mercurial/localrepo.py
changeset 39109 a915db9a5e77
parent 38986 ac0a87160012
child 39111 46da52f4b820
--- a/mercurial/localrepo.py	Sun Aug 12 12:16:08 2018 +0900
+++ b/mercurial/localrepo.py	Sat Jul 07 22:32:49 2018 +0900
@@ -2052,6 +2052,7 @@
 
             if ctx.manifestnode():
                 # reuse an existing manifest revision
+                self.ui.debug('reusing known manifest\n')
                 mn = ctx.manifestnode()
                 files = ctx.files()
             elif ctx.files():
@@ -2100,6 +2101,7 @@
                                 added, drop)
                 files = changed + removed
             else:
+                self.ui.debug('reusing manifest from p1 (no file change)\n')
                 mn = p1.manifestnode()
                 files = []