remove the most recent commit git code example
Example 1: remove last commit git
git reset --hard HEAD^
git push origin -f
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