changeset 3155:56c59ba7aa76

findcopies: use dirstate rename information
author Matt Mackall <mpm@selenic.com>
date Mon, 25 Sep 2006 20:31:05 -0500
parents b1f10d3223c1
children ca00ce41a2e8
files mercurial/merge.py
diffstat 1 files changed, 9 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/merge.py	Mon Sep 25 17:53:17 2006 -0500
+++ b/mercurial/merge.py	Mon Sep 25 20:31:05 2006 -0500
@@ -63,10 +63,11 @@
     Update manifest to correspond to the working directory
     """
 
+    copied = repo.dirstate.copies()
     modified, added, removed, deleted, unknown = status[:5]
     for i,l in (("a", added), ("m", modified), ("u", unknown)):
         for f in l:
-            man[f] = man.get(f, nullid) + i
+            man[f] = man.get(copied.get(f, f), nullid) + i
             man.set(f, util.is_exec(repo.wjoin(f), man.execf(f)))
 
     for f in deleted + removed:
@@ -132,6 +133,7 @@
     Find moves and copies between m1 and m2 back to limit linkrev
     """
 
+    dcopies = repo.dirstate.copies()
     copy = {}
     match = {}
     u1 = nonoverlap(m1, m2)
@@ -147,7 +149,7 @@
             copy[f2] = c.path()
 
     for f in u1:
-        c = ctx(f, m1[f])
+        c = ctx(dcopies.get(f, f), m1[f])
         for of in findold(c, limit):
             if of in m2:
                 checkpair(c, of, m2)
@@ -354,6 +356,11 @@
                   (short(p1), short(p2), short(pa)))
 
     action = []
+
+    copy = {}
+    if not (backwards or overwrite):
+        copy = findcopies(repo, m1, m2, repo.changelog.rev(pa))
+
     m1 = workingmanifest(repo, m1, status)
 
     if not force:
@@ -361,10 +368,6 @@
     if not branchmerge:
         action += forgetremoved(m2, status)
 
-    copy = {}
-    if not (backwards or overwrite):
-        copy = findcopies(repo, m1, m2, repo.changelog.rev(pa))
-
     action += manifestmerge(repo.ui, m1, m2, ma, overwrite, backwards, partial)
     del m1, m2, ma