여기 에서 숨김을 적용/적용 취소하고 숨김에서 새 분기를 만들 수도 있습니다. 실제로 적용하지 않고 stash 안에 무엇이 있는지 간단히 볼 수 있습니까?
반응형
질문자 :Chris Abrams
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
반응형
'etc. > StackOverFlow' 카테고리의 다른 글
HTML 5: 그렇습니까?<br> ,<br/> , 또는<br /> ? (0) | 2021.12.03 |
---|---|
병합된 모든 Git 브랜치를 어떻게 삭제할 수 있습니까? (0) | 2021.12.03 |
Java 배열을 인쇄하는 가장 간단한 방법은 무엇입니까? (0) | 2021.12.03 |
SQL 테이블에서 중복 값 찾기 (0) | 2021.12.03 |
GCC가 a*a*a*a*a*a를 (a*a*a)*(a*a*a)로 최적화하지 않는 이유는 무엇입니까? (0) | 2021.12.03 |