etc./StackOverFlow

적용하지 않고 숨김에 무엇이 있는지 확인 [중복]

청렴결백한 만능 재주꾼 2021. 12. 3. 08:21
반응형

질문자 :Chris Abrams


여기 에서 숨김을 적용/적용 취소하고 숨김에서 새 분기를 만들 수도 있습니다. 실제로 적용하지 않고 stash 안에 무엇이 있는지 간단히 볼 수 있습니까?



man git-stash git help stash 를 통해서도 얻을 수 있음):

이 명령으로 숨겨져 있는 수정 사항은 git stash list 로 나열하고 git stash show 검사할 수 있으며 ...

 show [<stash>] Show the changes recorded in the stash as a diff between the stashed state and its original parent. When no <stash> is given, shows the latest one. By default, the command shows the diffstat, but it will accept any format known to git diff (eg, git stash show -p stash@{1} to view the second most recent stash in patch form).

참고: -p 옵션은 git-diff 문서에 따라 패치를 생성합니다.

은닉물 나열:

 git stash list

가장 최근 보관함에 있는 파일 표시:

 git stash show

가장 최근 보관함 의 변경 사항 을 표시합니다.

 git stash show -p

명명된 은닉 의 변경 사항 을 표시합니다.

 git stash show -p stash@{1}

simont

출처 : http:www.stackoverflow.com/questions/10725729/see-whats-in-a-stash-without-applying-it

반응형