Re: [PATCH 2/5] add object-cache infrastructure
From: Jeff King <hidden>
Date: 2016-06-15 22:51:34
On Mon, Jul 11, 2011 at 07:14:16PM -0500, Illia Bobyr wrote:
I am not 100% sure that my solution is exactly about this problem, but it seems to be quite relevant. I think that if you rebase "step-by-step" by doing, for this particular example, something like $ git rebase master^ topic $ git rebase master topic You will first see the /modified one/one/ conflict that you will resolve your "two" against and then your second rebase will apply with no conflicts. I have a set of scripts that help me do this kind of rebases by essentially rebasing the topic branch against every single commit on the upstream.
That makes a lot of sense to me as a strategy. Of course, as you mention, it is horribly slow. And when you do have real conflicts, you would end up looking at the same conflicts again and again (and as you mention, rerere can be some help there, though not necessarily perfect).
At the same time the less changes are in topic...master the faster it would be and the more changes are there the more you benefit from a gradual rebase.
Yeah, this seems like the real problem to me. It's one thing to rebase
on top of a single series that somebody has applied upstream. But if it
has been 2 weeks, there may be hundreds of commits, and doing hundreds
of rebases is awful. I wonder if you could do better by picking out some
"key" commits in master to rebase on top of using one of:
1. Divide-and-conquer the commit space. Try the rebase, starting on
the HEAD. If it works, great. If the user says "this is too hard",
then find the midpoint between where we tried to rebase and the
merge base, and try rebasing there. Every time it's too hard, go
back halfway to the start. Every time it's easy, try the new result
on top of HEAD.
So it's basically doing a O(lg n) search backwards for an easy
place to rebase, and then repeatedly checking if that was a good
spot (and repeating the backwards search if not). The worst case
complexity is O(n lg n) rebases. But in practice, you can hopefully
find the problematic spot in O(lg n), and then everything will just
work out after 1 or 2 problematic spots.
2. Use heuristics (like commit message content) to find related
commits. So if I have a 5-patch series, I can perhaps find the
likely commits upstream that match my patches, and those are
good places to try individual rebases. And then I don't care how
many commits are in master. If I have a 5 patch series, I won't do
more than 5 rebases.
But I've never tried this in practice. Maybe next time a rebase is ugly
I'll manually work through one of the methods and see how it fares.
-Peff