반응형
저장하지 않고 저장 내용 확인
실제로 사용하지 않고 어떻게 저장고에 무엇이 있는지 확인할 수 있습니까?
부터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).
주의:-p
option은 패치를 생성합니다.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
반응형
'programing' 카테고리의 다른 글
Swift @autoclosure 사용방법 (0) | 2023.04.15 |
---|---|
Swift 딕셔너리에 키가 포함되어 있는지 확인하고 해당 값 중 하나를 가져옵니다. (0) | 2023.04.15 |
SQL Server Management Studio에서 테이블에 인덱스를 추가할 수 없습니다. (0) | 2023.04.15 |
에코 없이 셸 스크립트에서 비밀번호를 얻는 방법 (0) | 2023.04.15 |
셀에 서브스트링이 포함되어 있는지 확인합니다. (0) | 2023.04.15 |