git remove last commit and push to remote code example
Example 1: remove last commit from remote
git reset HEAD^ # remove commit locally
git push origin +HEAD # force-push the new HEAD commit
Example 2: git delete last commit in remote
$git rebase -i HEAD~2