how avoid the last git commit code example
Example 1: git undo last commit
$ git reset --soft HEAD~1
Example 2: remove last commit git
git reset --hard HEAD^
git push origin -f
$ git reset --soft HEAD~1
git reset --hard HEAD^
git push origin -f