how to reset to commit in git code example
Example 1: undo last commit
git reset --hard HEAD~1
Example 2: undo last commit
$ git reset --hard HEAD~1
Example 3: reset to commit
# This will detach your HEAD, that is, leave you with no branch checked out:
git checkout 0d1d7fc32
# to go back to original branch, git checkout master