How to undo the last commit in git [duplicate]
I think you haven’t messed up yet. Try: git reset HEAD^ This will bring the dir to state before you’ve made the commit, HEAD^ means the parent of the current commit (the one you don’t want anymore), while keeping changes from it (unstaged).