undo last command git code example
Example 1: git undo last commit
$ git reset --soft HEAD~1
Example 2: undo git
# KEEP CHANGES
git reset --soft HEAD~1
# REMOVE CHANGES
git reset --hard HEAD~1
Example 3: undo last commit
git reset HEAD~
Example 4: git reflog reset
git reset HEAD@{1}