Git Cheat Sheet

Deleting Remote Commits

Assuming the remote repository has been cloned locally and the remote repository name is origin

  1. Delete all local modification using git reset -- ...
  2. Delete the latest commit locally using git reset HEAD^ --hard
  3. Synchronize it to remote using git push origin -f

Thanks To

  • http://christoph.ruegg.name/blog/git-howto-revert-a-commit-already-pushed-to-a-remote-reposit.html

Leave a Reply