diff mercurial/wireproto.py @ 35276:cb4dcd7fabe7

getbundle: add support for 'bookmarks' boolean argument This new argument requests a 'bookmarks' part from the server. It is meant to be used instead of the "listkeys" request.
author Boris Feld <boris.feld@octobus.net>
date Tue, 17 Oct 2017 15:27:17 +0200
parents 60143d038eb7
children 7d2292416046
line wrap: on
line diff
--- a/mercurial/wireproto.py	Tue Oct 17 15:26:16 2017 +0200
+++ b/mercurial/wireproto.py	Tue Oct 17 15:27:17 2017 +0200
@@ -205,6 +205,7 @@
 # :scsv:  list of comma-separated values return as set
 # :plain: string with no transformation needed.
 gboptsmap = {'heads':  'nodes',
+             'bookmarks': 'boolean',
              'common': 'nodes',
              'obsmarkers': 'boolean',
              'phases': 'boolean',