Git (1) 썸네일형 리스트형 [Git] 삭제한 Stash 복구하는 방법 Git 명령어를 통한 삭제된 Stash 복구 ▶ 삭제된 Stash List 가져오기 git fsck --unreachable | grep commit | cut -d ' ' -f3 | xargs git log --merges --no-walk ▶ 삭제된 Stash 복구시키기 git update-ref refs/stash -m "다시 저장할 Stash 이름" ▶ 복구된 Stash가 보이지 않을 때 git update-ref refs/stash --create-reflog -m "다시 저장할 Stash 이름" 가끔씩 다른 branch의 작업을 먼저 해줘야 하는 경우가 종종 존재하는데 이때 저는 stash를 사용해서 작업하던 내역들을 저장해 두고 추후에 다시 .. 이전 1 다음