##// END OF EJS Templates
commit: add debug message regarding manifest reuse
Yuya Nishihara -
r39145:a915db9a default
parent child Browse files
Show More
@@ -2052,6 +2052,7 b' class localrepository(object):'
2052
2052
2053 if ctx.manifestnode():
2053 if ctx.manifestnode():
2054 # reuse an existing manifest revision
2054 # reuse an existing manifest revision
2055 self.ui.debug('reusing known manifest\n')
2055 mn = ctx.manifestnode()
2056 mn = ctx.manifestnode()
2056 files = ctx.files()
2057 files = ctx.files()
2057 elif ctx.files():
2058 elif ctx.files():
@@ -2100,6 +2101,7 b' class localrepository(object):'
2100 added, drop)
2101 added, drop)
2101 files = changed + removed
2102 files = changed + removed
2102 else:
2103 else:
2104 self.ui.debug('reusing manifest from p1 (no file change)\n')
2103 mn = p1.manifestnode()
2105 mn = p1.manifestnode()
2104 files = []
2106 files = []
2105
2107
@@ -52,6 +52,7 b' Convert while testing all possible outpu'
52 5 init projA
52 5 init projA
53 source: svn:afeb9c47-92ff-4c0c-9f72-e1f6eb8ac9af/trunk@1
53 source: svn:afeb9c47-92ff-4c0c-9f72-e1f6eb8ac9af/trunk@1
54 converting: 0/6 revisions (0.00%)
54 converting: 0/6 revisions (0.00%)
55 reusing manifest from p1 (no file change)
55 committing changelog
56 committing changelog
56 updating the branch cache
57 updating the branch cache
57 4 hello
58 4 hello
@@ -118,6 +119,7 b' Convert while testing all possible outpu'
118 converting: 4/6 revisions (66.67%)
119 converting: 4/6 revisions (66.67%)
119 reparent to file:/*/$TESTTMP/svn-repo/branches/branch%C3%A9 (glob)
120 reparent to file:/*/$TESTTMP/svn-repo/branches/branch%C3%A9 (glob)
120 scanning paths: /branches/branch\xc3\xa9 0/1 paths (0.00%) (esc)
121 scanning paths: /branches/branch\xc3\xa9 0/1 paths (0.00%) (esc)
122 reusing manifest from p1 (no file change)
121 committing changelog
123 committing changelog
122 updating the branch cache
124 updating the branch cache
123 0 branch to branch?e
125 0 branch to branch?e
@@ -125,6 +127,7 b' Convert while testing all possible outpu'
125 converting: 5/6 revisions (83.33%)
127 converting: 5/6 revisions (83.33%)
126 reparent to file:/*/$TESTTMP/svn-repo/branches/branch%C3%A9e (glob)
128 reparent to file:/*/$TESTTMP/svn-repo/branches/branch%C3%A9e (glob)
127 scanning paths: /branches/branch\xc3\xa9e 0/1 paths (0.00%) (esc)
129 scanning paths: /branches/branch\xc3\xa9e 0/1 paths (0.00%) (esc)
130 reusing manifest from p1 (no file change)
128 committing changelog
131 committing changelog
129 updating the branch cache
132 updating the branch cache
130 reparent to file:/*/$TESTTMP/svn-repo (glob)
133 reparent to file:/*/$TESTTMP/svn-repo (glob)
General Comments 0
You need to be logged in to leave comments. Login now