프로그래밍 2015. 3. 24. 11:01
git show-ref -h HEAD 

1) 현재 해드의 커밋 포인트 보기

git fsck --lost-found
dangling commit 7c61179cbe51c050c5520b4399f7b14eec943754

git reflog

39ba87b... HEAD@{0}: HEAD~1: updating HEAD
7c61179... HEAD@{1}: pull origin master: Fast forward

2) fsck 명령으로 reset한 커밋 포인트의 해쉬를 알 수 있다.\

git merge 7c61179

3) 해당 commit 포인트로 merge 하면 reset한 commit 포인트로 복구 된다.

//