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