I am making this question so I can link to it later.

There is often talk about how you should never rebase published work and it’s dangerous, etc. However, I have not seen any recipes posted for how to deal with the situation in case a rebase is published.

Now, do note that this is only really feasible if the repository is only cloned by a known (and preferably small) group of people, so that whoever pushes the rebase or reset can notify everyone else that they will need to pay attention next time they fetch(!).

One obvious solution that I have seen will work if you have no local commits on foo and it gets rebased:

git fetch
git checkout foo
git reset --hard origin/foo

This will simply throw away the local state of foo in favour of its history as per the remote repository.

But how does one deal with the situation if one has committed substantial local changes on that branch?

link|improve this question
feedback

2 Answers

up vote 17 down vote accepted

Getting back in synch after a pushed rebase is really not that complicated in most cases.

git checkout foo
git branch old-foo origin/foo # BEFORE fetching!!
git fetch
git rebase --onto origin/foo old-foo foo
git branch -D old-foo

Ie. first you set up a bookmark for where the remote branch originally was, then you use that to replay your local commits from that point onward onto rebased remote branch.

Rebasing is like violence: if it doesn’t solve your problem, you just need more of it. ☺

You can do this without the bookmark of course, if you look up the pre-rebase origin/foo commit ID, and use that.

This is also how you deal with the situation where you forgot to make a bookmark before fetching. Nothing is lost – you just need to check the reflog for the remote branch:

git reflog show origin/foo | awk '
    PRINT_NEXT==1 { print $1; exit }
    /fetch: forced-update/ { PRINT_NEXT=1 }'

This will print the commit ID that origin/foo pointed to before the most recent fetch that changed its history.

You can then simply

git rebase --onto origin/foo $commit foo
link|improve this answer
1  
Quick note: I think it's pretty intuitive, but if you don't know awk well... that one-liner is just looking through the output of git reflog show origin/foo for the first line saying "fetch: forced-update"; that's what git records when a fetch causes the remote branch to do anything but fast-forward. (You could just do it by hand, too - the forced update is probably the most recent thing.) – Jefromi Nov 3 '10 at 22:35
4  
+1 for `Rebasing is like violence: if it doesn’t solve your problem, you just need more of it. ☺` – sehe Nov 30 '11 at 8:57
feedback

I'd say the recovering from upstream rebase section of the git-rebase man page covers pretty much all of this.

It's really no different from recovering from your own rebase - you move one branch, and rebase all branches which had it in their history onto its new position.

link|improve this answer
1  
Ah, so it does. But though I now understand what it says, I would not have before, prior to figuring this out on my own. And there is no cookbook recipe (perhaps rightly so in such documentation). I will also put forth that calling the “hard case” hard is F.U.D. I submit that rewritten history is trivially manageable at the scale of most in-house development. The superstitious way in which this subject is always treated annoys me. – Aristotle Pagaltzis Nov 3 '10 at 18:01
1  
@Aristotle: You're right that it's very manageable, given that all developers know how to use git, and that you can effectively communicate to all developers. In a perfect world, that'd be the end of the story. But a lot of projects out there are big enough that an upstream rebase really is a scary thing. (And then there are places like my workplace, where most of the developers have never even heard of a rebase.) I think the "superstition" is just a way of providing the safest, most generic advice possible. No one wants to be the one who causes a disaster in someone else's repo. – Jefromi Nov 3 '10 at 19:14
Yes, I understand the motive. And I agree with it fully. But there is a world of difference between “don’t try this if you don’t understand the consequences” and “you should never do that because it’s evil”, and this alone I take issue with. It is always better to instruct than to instil fear. – Aristotle Pagaltzis Nov 3 '10 at 21:57
@Aristotle: Agreed. I do try to tend toward the "make sure you know what you're doing" end, but especially online, I try to give it enough weight so that a casual visitor from google will take note. You're right, a lot of it should probably be toned down. – Jefromi Nov 3 '10 at 23:13
feedback

Your Answer

 
or
required, but never shown

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