reverse a commit git code example
Example 1: revert last commit
$ git reset --soft HEAD~1
Example 2: undo most recent commit
$ git commit -m "some comment"
$ git reset HEAD~
<< edit files as necessary >>
$ git add ...
$ git commit -c ORIG_HEAD
Example 3: how to revert commit in git
git checkout <commit hash>