새끼 개발자의 Life is egg

실수로 git stash drop 했을 때 되살리기 본문

개발's egg/Git

실수로 git stash drop 했을 때 되살리기

현z 2023. 8. 11. 11:31

stash 한것을 실수로 drop 했다.

로컬 히스토리를 뒤져야 하나 고민했는데

되살릴 수 있었다.

 

$ git stash drop
Dropped refs/stash@{0} (1c98ec781ca59784fe69362f6672468edbaddc81)

 

drop이 완료되면 메시지가 뜨는데

여기서 중괄호 안에 있는 값이 방금 drop한 stash의 해시값이다.

 

$ git stash apply 1c98ec781ca59784fe69362f6672468edbaddc81

로 되살릴 수 있었음

 

Comments