# HG changeset patch # User Martin von Zweigbergk # Date 1416784130 28800 # Node ID 9f4ac44a727378696b45d6244f2e221c343415be # Parent 922b10c870c5d2dccd01b6dd40c9e78ea7b93bfa merge: duplicate 'if f in copied' into each branch diff -r 922b10c870c5 -r 9f4ac44a7273 mercurial/merge.py --- a/mercurial/merge.py Sun Nov 23 14:09:10 2014 -0800 +++ b/mercurial/merge.py Sun Nov 23 15:08:50 2014 -0800 @@ -441,10 +441,10 @@ else: # both changed something actions['m'].append((f, (f, f, f, False, pa.node()), "versions differ")) - elif f in copied: # files we'll deal with on m2 side - pass elif n1: # file exists only on local side - if f in movewithdir: # directory rename, move local + if f in copied: + pass # we'll deal with it on m2 side + elif f in movewithdir: # directory rename, move local f2 = movewithdir[f] actions['dm'].append((f2, (f, fl1), "remote directory rename - move from " + f)) @@ -467,7 +467,9 @@ else: actions['r'].append((f, None, "other deleted")) elif n2: # file exists only on remote side - if f in movewithdir: + if f in copied: + pass # we'll deal with it on m1 side + elif f in movewithdir: f2 = movewithdir[f] actions['dg'].append((f2, (f, fl2), "local directory rename - get from " + f))