remove last commit from branch 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: remove last commit from remote
git push origin +HEAD^:<name of your branch, most likely 'master'>
Example 3: git delete last commit in remote
1
$git rebase -i HEAD~2
Example 4: git delete last commit in remote
$git rebase -i HEAD~2