discard the last git commit code example
Example 1: undo last commit
$ git reset --soft HEAD~1
Example 2: how to delete old commits in github
git reset --hard HEAD^
git push origin -f
$ git reset --soft HEAD~1
git reset --hard HEAD^
git push origin -f