revert last git command code example
Example 1: revert last commit
$ git reset --soft HEAD~1
Example 2: how to revert to log in git
git revert --no-commit 0766c053..HEAD
git commit
Example 3: revert last commit git
$ git commit -m "Something terribly misguided" # (0: Your Accident)
$ git reset HEAD~ # (1)
[ edit files as necessary ] # (2)
$ git add . # (3)
$ git commit -c ORIG_HEAD # (4)