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:
[Original image lost]
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.
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.
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 "
The problem with all these retro-active solutions is as follows:
( 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.