Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
13  
Word of caution: Do not ever do this when you have a lot of people following your repository, you will make their local repository go out of sync if they have pulled in the latest changes. If this concerns a mistake, you can just do another commit undoing the mistake. If this concerns a password, you might want to change the password instead and don't hurry to delete this. Forcing things does not go without drawbacks. – Tom Wijsman Nov 16 '12 at 17:19
2  
Word of caution 2: The commit can still be accessible directly via SHA1. Force push does not delete the commit, it creates a new one and moves the file pointer to it. To truly delete a commit you must delete the whole repo. – Gustav Mar 15 at 13:14
Thanks, that WOC2 helped me to recover my precious code from a mistake deletion!! Thanks! – kR105 Apr 1 at 9:42

3 Answers

up vote 266 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.

share|improve this answer
9  
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
1  
No local tree modification is necessary at all to satisfy the users's request. – Dustin Jan 17 '09 at 22:44
6  
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
3  
I'm confused. Why is it not possible to uncommit with git reset --soft HEAD^ and then do git push origin +master? Why are we using git rebase -i HEAD^^ in this case? – Dennis Oct 23 '12 at 7:23
2  
@Dennis because I wasn't familiar with reset --soft 3.5 years ago. =) – Can Berk Güder Oct 27 '12 at 18:33
show 5 more comments
git push -f origin HEAD^:master

That should "undo" the push.

share|improve this answer
9  
This worked fine too! It removes the push from github but leaves my local repository intact. Thanks! – hectorsq Jan 18 '09 at 0:41
5  
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
13  
This method worked for me, unlike the one in the accepted answer – Bobby Jack Feb 18 '11 at 14:38
9  
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
22  
do: git push -f origin HEAD^^:master to reverse the 2 last changes, works n times – ianj Jul 17 '11 at 23:38
show 6 more comments

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/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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