undo a commit revert code example
Example 1: undo commit
# KEEP CHANGES
git reset --soft HEAD~1
# REMOVE CHANGES
git reset --hard HEAD~1
Example 2: revert commit git
$ git revert HEAD
Example 3: how to revert commit in git
git checkout <commit hash>