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