나는 일부 지방 변화에 간git 하위 트리를 가져 오는 방법 diff?
git subtree add -P some/path otherremote otherbranch
개발을 다른 저장소를 탑재 한 저장소를 가지고, 또한 함께 할 병합의 몇 라운드로 :
git fetch otherremote
git subtree merge -P some/path otherremote/otherbranch
git commit
지금 내가 원하는 otherremote/otherbranch의 HEAD와 일부/경로의 트리 사이의 차이점을 얻습니다. 어떻게해야합니까?
레코드의 경우 원격이 변경된 경우 diff는 '원격 업데이트 git'또는 'git subtree pull'(후자도 병합)을 제외하고는 오래된 분기의 결과를 계속 표시합니다. 아주 똑같은 하위 트리에서 리모컨으로 밀린 경우에도 마찬가지입니다. – Wtower
예에서 ~ 17은 무엇을 나타 냅니까? – SsjCosty