Shawn Pearce <spearce@xxxxxxxxxxx> wrote: > Karl Hasselstr?m <kha@xxxxxxxxxxx> wrote: >> If I make a patch series where more than one patch touches the same >> line, I get a lot of merge errors when upstream has accepted them and >> I try to merge them back. > > When pg grabs its (possibly remote) parent ("stg pull" aka pg-rebase) > we try to push down PatchA. If PatchA fails to push cleanly we'll > pop it off and try to push PatchA + PatchB. If that pushes cleanly > then we fold the content of PatchA into PatchB, effectively making > PatchA part of PatchB. If PatchA + PatchB failed to push down > cleanly then we pop both and retry pushing PatchA + PatchB + PatchC. How do you solve the situation where only PatchA, PatchC and PatchE were merged, B and D still pending? Trying combinations of patches is not a good idea. As I said, if you have a big number of patches this might be pretty slow. Have a look at my patch for trying the reversed patches in reverse order. It seems to solve this problem for most of the cases. There are cases when this method would fail like adjacent changes made by third-party patches that break the context of the git patches and git-apply would fail. An addition to this would be to try a diff3 merge with the reversed patch but I don't think it's worth since it would become much slower. > If that pushes down cleanly then we make PatchA and PatchB officially > part of PatchC. I don't agree with this. For example, patches A, B and C change the same line in file1 but patch A also changes file2 and patch B changed file3. With your approach, merging A+B+C succeeds and you make A and B part of C and hence move the changed to file2 and file3 in patch C. The above can happen when the maintainer only merges part of the patch or simply decides to merge patch C only and manually solve the conflict in file1 (since patch C is based on the context from patches A+B). -- Catalin - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html