programing

저장하지 않고 저장 내용 확인

showcode 2023. 4. 15. 09:40
반응형

저장하지 않고 저장 내용 확인

실제로 사용하지 않고 어떻게 저장고에 무엇이 있는지 확인할 수 있습니까?

부터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 (e.g., git stash show -p stash@{1}
    to view the second most recent stash in patch form).

주의:-poption은 패치를 생성합니다.git-diff문서를 참조해 주세요.

stash를 나열합니다.

git stash list

최신 저장에 있는 파일 표시:

git stash show

최신 저장의 변경 내용을 표시합니다.

git stash show -p

명명된 저장소의 변경 내용을 표시합니다.

git stash show -p stash@{1}

즉, 다음과 같습니다.

git stash show -p 1 

언급URL : https://stackoverflow.com/questions/10725729/see-whats-in-a-stash-without-applying-it

반응형