diff mercurial/ui.py @ 29413:31d3ab7985b8

ui: path option to declare which revisions to push by default Now that we have a mechanism for declaring path sub-options, we can start to pile on features! Many power users have expressed frustration that bare `hg push` attempts to push all local revisions to the remote. This patch introduces the "pushrev" path sub-option to control which revisions are pushed when no "-r" argument is specified. The value of this sub-option is a revset, naturally. A future feature addition could potentially introduce a "pushnames" sub-options that declares the list of names (branches, bookmarks, topics, etc) to push by default. The entire "what to push by default" feature should probably be considered before this patch lands.
author Gregory Szorc <gregory.szorc@gmail.com>
date Sun, 26 Jun 2016 07:59:02 -0700
parents b62bce819d0c
children 96bd27eb23f0
line wrap: on
line diff
--- a/mercurial/ui.py	Sat Jun 25 18:35:14 2016 -0700
+++ b/mercurial/ui.py	Sun Jun 26 07:59:02 2016 -0700
@@ -1281,6 +1281,10 @@
 
     return str(u)
 
+@pathsuboption('pushrev', 'pushrev')
+def pushrevpathoption(ui, path, value):
+    return value
+
 class path(object):
     """Represents an individual path and its configuration."""