reset not pushed commit code example
Example 1: cancel a commit not pushed
git reset --soft HEAD~
Example 2: github undo last pushed commit
git reset <previous label or sha1>
git commit -am "blabla"
git push -f <remote-name> <branch-name>
git reset --soft HEAD~
git reset <previous label or sha1>
git commit -am "blabla"
git push -f <remote-name> <branch-name>