merge: structure 'remote created' code to match table
This does duplicate the call to _checkunknownfile(), but it will
simplify future patches.
--- a/mercurial/merge.py Mon Dec 22 15:48:39 2014 -0800
+++ b/mercurial/merge.py Wed Nov 19 11:44:00 2014 -0800
@@ -496,15 +496,19 @@
#
# Checking whether the files are different is expensive, so we
# don't do that when we can avoid it.
- if force and not branchmerge:
+ if not force:
+ different = _checkunknownfile(repo, wctx, p2, f)
+ if different:
+ aborts.append((f, "ud"))
+ else:
+ actions[f] = ('g', (fl2,), "remote created")
+ elif not branchmerge:
actions[f] = ('g', (fl2,), "remote created")
else:
different = _checkunknownfile(repo, wctx, p2, f)
- if force and branchmerge and different:
+ if different:
actions[f] = ('m', (f, f, None, False, pa.node()),
"remote differs from untracked local")
- elif not force and different:
- aborts.append((f, 'ud'))
else:
actions[f] = ('g', (fl2,), "remote created")
elif n2 != ma[f]: