Here's what I did on my supposed-to-be-stable branch...

% git rebase master
First, rewinding head to replay your work on top of it...
Fast-forwarded alpha-0.3.0 to master.
% git status
# On branch alpha-0.3.0
# Your branch is ahead of 'origin/alpha-0.3.0' by 53 commits.
#
nothing to commit (working directory clean)
% git push
Fetching remote heads...
  refs/
  refs/heads/
  refs/tags/
  refs/remotes/
'refs/heads/master': up-to-date
updating 'refs/heads/alpha-0.3.0'
  from cc4b63bebb6e6dd04407f8788938244b78c50285
  to   83c9191dea88d146400853af5eb7555f252001b0
    done
'refs/heads/unstable': up-to-date
Updating remote server info

That was all a mistake as I later realized. I'd like to undo this entire process, and revert the alpha-0.3.0 branch back to what it was.

Could anyone point me in the right direction?


The following is the fix in action based on the accepted answer...

% git push -f origin cc4b63b:alpha-0.3.0
Fetching remote heads...
  refs/
  refs/heads/
  refs/tags/
  refs/remotes/
updating 'refs/heads/alpha-0.3.0' using 'cc4b63b'
  from 83c9191dea88d146400853af5eb7555f252001b0
  to   cc4b63bebb6e6dd04407f8788938244b78c50285
    done
Updating remote server info
%
link|improve this question

67% accept rate
this stackoverflow post perhaps? stackoverflow.com/questions/134882/undoing-a-git-rebase – Steen Feb 24 '11 at 3:27
It's not really the same situation, undoing a rebase is a local repository scenario, undoing a git push involves a remote repository and can be more tricky depending on the access you have. – Charles Bailey Feb 24 '11 at 3:27
Steen - you're right - I probably should have I suppose. I figured that the blessed repository that all pull from is more of an admin task and so belongs here, where general client-side git is a stackoverflow question. – Cyrus Feb 24 '11 at 3:27
feedback

6 Answers

up vote 147 down vote accepted

You need to make sure that no other users of this repository are fetching the incorrect changes or trying to build on top of the commits that you want removed because you are about to rewind history.

Then you need to 'force' push the old reference.

git push -f origin cc4b63bebb6:alpha-0.3.0

You may have receive.denyNonFastForwards set on the remote repository. If this is the case, then you will get an error which includes the phrase [remote rejected].

In this scenario, you will have to delete and recreate the branch.

git push origin :alpha-0.3.0
git push origin cc4b63bebb6:refs/heads/alpha-0.3.0

If this doesn't work - perhaps because you have receive.denyDeletes set, then you have to have direct access to the repository. In the remote repository, you then have to do something like the following plumbing command.

git update-ref refs/heads/alpha-0.3.0 cc4b63bebb6 83c9191dea8
link|improve this answer
5  
A perfect and well explained response - thank you very much. For anyone else who stumbles accross this, for academic reasons I tried both of the first 2 approaches, and both worked - obviously if the first one works, it's the cleanest approach. If I chould UP you 10 times Charles, I would. :) – Cyrus Aug 13 '09 at 8:51
6  
For quick-reference, the first line here is git push -f origin last_known_good_commit:branch_name – philfreo Aug 29 '11 at 23:16
git push -f origin cc4b63bebb6:alpha-0.3.0 => this one helped me, Note alpha-0.3.0 is the branch name and cc4b63bebb6 is the commit id we wish to revert back to. so, after carrying out this command we wil be in cc4b63bebb6 commit id. – kumar Dec 28 '11 at 11:51
4  
This solution is highly dangerous if you are working in a shared repo. As a best practice, all commits pushed to a remote repo that is shared should be considered 'immutable'. Use 'git revert' instead: kernel.org/pub/software/scm/git/docs/… – Saboosh Jan 13 at 20:47
feedback

I believe that you can also do this:

git checkout alpha-0.3.0
git reset --hard cc4b63bebb6
git push origin +alpha-0.3.0

This is very similar to the last method, except you don't have to muck around in the remote repo.

link|improve this answer
Thanks so much for this! Super simple and easy to follow. Worked like a champ. – Mike Branski Jun 8 '11 at 3:13
3  
This worked for me as well, but it's worth noting that this will "re-write" history on the remote. This may be what you want, but it may not be! – Tom Aug 25 '11 at 17:09
feedback

The checked solution is highly dangerous if you are working in a shared repo. As a best practice, all commits pushed to a remote repo that is shared should be considered 'immutable'. Use 'git revert' instead: http://www.kernel.org/pub/software/scm/git/docs/user-manual.html#fixing-mistakes

edit: old URL no longer works: http://book.git-scm.com/4_undoing_in_git_-_reset,_checkout_and_revert.html

link|improve this answer
feedback

A way to do it without losing the changes you wanted:

git reset cc4b63b 
git stash
git push -f origin alpha-0.3.0
git stash pop

Then you can choose the files you meant to push

link|improve this answer
feedback

Another way to do this is:

  1. create another branch,
  2. checkout the previous commit on that branch using "git checkout"
  3. push the new branch.
  4. delete the old branch & push the delete (use git push origin :old_branch)
  5. rename the new branch into the old branch
  6. push again.
link|improve this answer
feedback

I use the Git Gui so how about "Commit->Ammend last commit" and then after correcting/modifying do again a Push with "Force overwrite existing branch" checked? I think that is a pretty easy way to undo your last push but I do not know the implications on public repos, or others.

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.