vote up 10 vote down star
5

How do you reverse the effect of a merge on polarised branches without dying of agony?

This problem has been plaguing me for months and I have finally given up.

You have 1 Repository, with 2 Named Branches. A and B.

Changes that occur to A will inevitably occur on B.

Changes that occur directly on B MUST NEVER occur on A.

In such a configuration, merging "B" into "A" produces a dire problem in the repository, as all the changes to B appear in A as if they were made in A.

The only "normal" way to recover from this situation appears to be "backing out" the merge, ie:

 hg up -r A 
 hg backout -r BadMergeRev --parent BadMergerevBeforeOnA

Which looks all fine and dandy, until you decide to merge later in the correct direction, and you end up with all sorts of nasty things happening and code that was erased / commented out on specifically branch B suddenly becomes unerased or uncommented.

There has not been a working viable solution to this so far other than "let it do its thing, and then hand fix all the problems" and that to be honest is a bit fubar.

Here is an image clarifying the problem:

Merge Headache

Files C & E ( or changes C & E ) must appear only on branch b, and not on branch a. Revision A9 here ( branch a, revno 9 ) is the start of the problem.

Revisions A10 and A11 are the "Backout merge" and "merge the backout" phases.

And revision B12 is mercurial, erroneously repeatedly dropping a change that was intended not to be dropped.

This Dilemma has caused much frustration and blue smoke and I would like to put an end to it.

Note

It may be the obvious answer to try prohibiting the reverse merge from occurring, either with hooks or with policies, I have found the ability to muck this up is rather high and the chance of it happening so likely that even with countermeasures, you must still assume that inevitably, it will happen so that you can solve it when it does.

To Elaborate

In the model I have used Seperate files. These make the problem sound simple. These merely represent arbitrary changes which could be a separate line.

Also, to add insult to injury, there have been substantial changes on branch A which leaves the standing problem "do the changes in branch A conflict with the changes in branch B which just turned up ( and got backed out ) which looks like a change on branch A instead "

On History Rewriting Tricks:

The problem with all these retro-active solutions is as follows:

  1. We have 9000 commits.
  2. Cloning freshly thus takes half an hour
  3. If there exists even one bad clone of the repository somewhere, there is a liklihood of it comming back in contact with the original repository, and banging it up all over again.
  4. Everyone has cloned this repository already, and now several days have passed with on-going commits.
  5. One such clone, happens to be a live site, so "wiping that one and starting from scratch" = "big nono"

( I admit, many of the above are a bit daft, but they are outside of my control ).

The only solutions that are viable are the ones that assume that people can and will do everything wrong, and that there is a way to 'undo' this wrongness.

flag
Ouch, that looks ugly... Did you also post this to selenic.com/mercurial/bts ? This sounds like an Hg bug that should be addressed. – Mike G. Nov 5 '08 at 17:38
Apologies to all, the image hosting went under :( and I can't find origianls – Kent Fredric Apr 10 at 4:32

5 Answers

vote up 0 vote down

I too would love a reasonable solution to this problem. It's caused me no end of trouble when developers inadvertently merge two separate branches and I've had to figure out how to undo the damage, and so far seems to be the biggest achilles heel I've run into with mercurial.

link|flag
Yes, the biggest cause of this I believe is the global branch propagation which causes initial confusion. And they have no intent on changing this behaviour. Currently the only solution appears to be "freeze branches, drop new commits, and then put hooks in to stop them appearing again" – Kent Fredric Dec 20 '08 at 16:50
vote up 2 vote down

After much discussion with some of the helpful people on #mercurial on freenode, mpm has provided a partial solution that seems to work for my test case ( I generated a fake repository trying to replicate the scenario )

However, on my actual repository, for reasons I don't quite understand, it is still less than perfect.

Here is a diagram of the currently proposed way of resolving this problem:

MergeBackout

Its now less of a problem to fix, but I'm still having to compare diffs ( ie: b46:b11 vs b46:b8 , a43:a10 vs a43:a9 ) and hand edit some changes back in.

Not closing this question/taking an answer until I get a guaranteed way that works on any repository.

Important

Anyone trying this stuff should clone their repository and play with it like a sandbox first. As you should be doing with any merge process, because that way if it goes wrong you can just throw it out and start again.

link|flag
vote up 0 vote down

So you want to merge just some changesets from B into A? Backing out changesets like you have been doing is a really bad idea as you have already suffered.

You should either use the transplant extension or have a third branch where you make common changes to merge into both A and B.

link|flag
Not backing out changes because I /want/ to here ;), and the problem is no matter how many branches i create, its still possible to merge them the wrong way, causing this problem. ( trust me, been down that avenue ) – Kent Fredric Nov 6 '08 at 19:42
vote up 2 vote down

In a pinch, you can export the repository to a bunch diffs, edit history, and then glue back together just what you want - into a new repository, so no risk of damage. Probably not too bad for your example, but I don't know what the real history looks like.

I referenced this page while performing a simpler operation:

http://strongdynamic.blogspot.com/2007/08/expunging-problem-file-from-mercurial.html

link|flag
Yeah, It would be an exhaustive process doing what you did, and it wouldn't necessarily work for my situation ( named branches work way odd ), and the history is a pigstye, when you have >4 committers all on their own schedule there is no linearity at all ;) – Kent Fredric Nov 6 '08 at 19:56
vote up 0 vote down

Can you afford to replace the repository with a clone up to A7 and B8?

link|flag
no. the problem has been replicated to all copies, and there have been substantial changes since the problem occurred :( – Kent Fredric Nov 5 '08 at 17:41

Your Answer

Get an OpenID
or

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