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