Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15424021
D21349.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D21349.diff
View Options
diff --git a/support/hg/arc-hg.py b/support/hg/arc-hg.py
--- a/support/hg/arc-hg.py
+++ b/support/hg/arc-hg.py
@@ -159,25 +159,20 @@
source, branches = hg.parseurl(ui.expandpath(source))
remote = hg.peer(repo, opts, source)
- bundle, remotebranches, cleanup = bundlerepo.getremotechanges(
- ui,
- repo,
- remote)
-
- try:
- for n in remotebranches:
- ctx = bundle[n]
+ with remote.commandexecutor() as e:
+ branchmap = e.callcommand('branchmap', {}).result()
+
+ for branch_name in branchmap:
+ for branch_node in branchmap[branch_name]:
markers.append({
'type': 'branch',
- 'name': ctx.branch(),
- 'node': node.hex(ctx.node()),
+ 'name': branch_name,
+ 'node': node.hex(branch_node),
})
- finally:
- cleanup()
with remote.commandexecutor() as e:
remotemarks = bookmarks.unhexlifybookmarks(e.callcommand('listkeys', {
- 'namespace': 'bookmarks',
+ 'namespace': 'bookmarks',
}).result())
for mark in remotemarks:
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 23, 7:55 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7718944
Default Alt Text
D21349.diff (1 KB)
Attached To
Mode
D21349: Use a "branchmap" call to identify remote branches in "arc-hg"
Attached
Detach File
Event Timeline
Log In to Comment