up vote 88 down vote favorite
57
share [g+] share [fb]

I "accidentally" pushed a commit to github.

Is it possible to remove this commit?

I want to revert my github repository as it was before this commit.

link|improve this question

feedback

3 Answers

up vote 77 down vote accepted

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~2 and delete the second line within the editor window that pops up.

Then, force push to github by using git push origin +master.

See http://www-cs-students.stanford.edu/~blynn/gitmagic/ch05.html#_8230_and_then_some for more information (i.e. if you want to remove older commits).

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

link|improve this answer
4  
More accurately, you /have/ to stash because git rebase -i won't let you if you have a dirty tree. – Otto Jan 16 '09 at 19:15
No local tree modification is necessary at all to satisfy the users's request. – Dustin Jan 17 '09 at 22:44
Note that removing the commit locally will completely trash it, not just “uncommit” it. I don't think it can be recovered. – adeel Apr 19 '11 at 14:50
1  
Note that this will still leave the commit in the reflog. If you have sensitive data in there, you may have to delete the repo entirely. – troelskn Jul 21 '11 at 16:02
feedback
git push -f origin HEAD^:master

That should "undo" the push.

link|improve this answer
5  
This worked fine too! It removes the push from github but leaves my local repository intact. Thanks! – hectorsq Jan 18 '09 at 0:41
4  
Well, yes. It only does what you asked for. :) Your repository and the remote repository don't have to have matching refs. – Dustin Jan 18 '09 at 7:45
5  
This method worked for me, unlike the one in the accepted answer – Bobby Jack Feb 18 '11 at 14:38
3  
Note, however, that this only moves the branch pointer. The accidentally pushed commit is still present in the remote repo. In GitHub's case, this means that it can still be seen if you know the SHA-1 hash (from user activity history, for example). – Thiago Arrais Jun 16 '11 at 16:09
5  
do: git push -f origin HEAD^^:master to reverse the 2 last changes, works n times – ianj Jul 17 '11 at 23:38
feedback

You'll need to clear out your cache to have it completely wiped. this help page from git will help you out. (it helped me) http://help.github.com/remove-sensitive-data/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.