remove commit on remote branch code example
Example 1: delete a pushed commit
# delete the last commit
$git reset –hard HEAD~
Example 2: remove last commit from remote
git push origin +HEAD^:
# delete the last commit
$git reset –hard HEAD~
git push origin +HEAD^: