출처: http://blog.daum.net/to302/10 git reset HEAD^ git push origin -f git reset HEAD@{1} git push origin +master git reset HEAD^ // 최종 커밋을 취소. 워킹트리는 보존됨. (커밋은 했으나 push하지 않은 경우 유용) git reset HEAD~2 //마지막 2개의 커밋을 취소. 워킹트리는 보존됨. git reset --hard HEAD~2 // 마지막 2개의 커밋을 ..