##// END OF EJS Templates
unbundle: properly read head modification result from bundle2...
Pierre-Yves David -
r26539:1956026e default
parent child Browse files
Show More
@@ -6475,7 +6475,7 b' def unbundle(ui, repo, fname1, *fnames, '
6475 6475 finally:
6476 6476 if tr:
6477 6477 tr.release()
6478 changes = [r.get('result', 0)
6478 changes = [r.get('return', 0)
6479 6479 for r in op.records['changegroup']]
6480 6480 modheads = changegroup.combineresults(changes)
6481 6481 else:
@@ -997,6 +997,7 b' Support for changegroup'
997 997 adding manifests
998 998 adding file changes
999 999 added 0 changesets with 0 changes to 3 files
1000 (run 'hg update' to get a working copy)
1000 1001
1001 1002 with reply
1002 1003
@@ -1125,6 +1126,7 b' Simple case where it just work: GZ'
1125 1126 adding manifests
1126 1127 adding file changes
1127 1128 added 0 changesets with 0 changes to 3 files
1129 (run 'hg update' to get a working copy)
1128 1130 Simple case where it just work: BZ
1129 1131 ----------------------------------
1130 1132
@@ -1211,6 +1213,7 b' Simple case where it just work: BZ'
1211 1213 adding manifests
1212 1214 adding file changes
1213 1215 added 0 changesets with 0 changes to 3 files
1216 (run 'hg update' to get a working copy)
1214 1217
1215 1218 unknown compression while unbundling
1216 1219 -----------------------------
General Comments 0
You need to be logged in to leave comments. Login now