show/hide this revision's text 2 added 227 characters in body

First, remove the commit on your local repository. You can do this using git rebase -i. For example, if it's your last commit, you can do git rebase -i HEAD~1 and delete the first line.

Then, force push using git push origin +master.

See http://www-cs-students.stanford.edu/~blynn/gitmagic/ch05.html#%5F8230%5Fand%5Fthen%5Fsome for more information.

Oh, and if your working tree is dirty, you might want to do a git stash first, and a git stash apply after.

show/hide this revision's text 1

First, remove the commit on your local repository. You can do this using git rebase -i. For example, if it's your last commit, you can do git rebase -i HEAD~1 and delete the first line.

Then, force push using git push origin +master.