Show More
@@ -1075,6 +1075,9 b' def _pullbundle2(pullop):' | |||
|
1075 | 1075 | |
|
1076 | 1076 | For now, the only supported data are changegroup.""" |
|
1077 | 1077 | kwargs = {'bundlecaps': caps20to10(pullop.repo)} |
|
1078 | ||
|
1079 | streaming, streamreqs = streamclone.canperformstreamclone(pullop) | |
|
1080 | ||
|
1078 | 1081 | # pulling changegroup |
|
1079 | 1082 | pullop.stepsdone.add('changegroup') |
|
1080 | 1083 | |
@@ -1087,7 +1090,9 b' def _pullbundle2(pullop):' | |||
|
1087 | 1090 | # make sure to always includes bookmark data when migrating |
|
1088 | 1091 | # `hg incoming --bundle` to using this function. |
|
1089 | 1092 | kwargs['listkeys'].append('bookmarks') |
|
1090 | if not pullop.fetch: | |
|
1093 | if streaming: | |
|
1094 | pullop.repo.ui.status(_('streaming all changes\n')) | |
|
1095 | elif not pullop.fetch: | |
|
1091 | 1096 | pullop.repo.ui.status(_("no changes found\n")) |
|
1092 | 1097 | pullop.cgresult = 0 |
|
1093 | 1098 | else: |
General Comments 0
You need to be logged in to leave comments.
Login now