copies: group bothnew with other sets
authorMatt Mackall <mpm@selenic.com>
Wed, 19 Aug 2015 15:40:13 -0500
changeset 26659 df66736a128e
parent 26658 aabfa0fb7e3e
child 26660 7e1baad90121
copies: group bothnew with other sets
mercurial/copies.py
--- a/mercurial/copies.py	Wed Aug 19 15:32:27 2015 -0500
+++ b/mercurial/copies.py	Wed Aug 19 15:40:13 2015 -0500
@@ -323,9 +323,11 @@
     fullcopy1, fullcopy2 = {}, {}
     diverge = {}
 
+    # find interesting file sets from manifests
     addedinm1 = m1.filesnotin(ma)
     addedinm2 = m2.filesnotin(ma)
     u1, u2 = _computenonoverlap(repo, c1, c2, addedinm1, addedinm2)
+    bothnew = sorted(addedinm1 & addedinm2)
 
     for f in u1:
         checkcopies(c1, f, m1, m2, ca, limit, diverge, copy1, fullcopy1)
@@ -351,7 +353,6 @@
         else:
             divergeset.update(fl) # reverse map for below
 
-    bothnew = sorted(addedinm1 & addedinm2)
     if bothnew:
         repo.ui.debug("  unmatched files new in both:\n   %s\n"
                       % "\n   ".join(bothnew))