D3949: shelve: improve help text for --patch and --stat
hooper (Danny Hooper)
phabricator at mercurial-scm.org
Mon Jul 16 22:10:40 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGabcf500d527c: shelve: improve help text for --patch and --stat (authored by hooper, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D3949?vs=9602&id=9604
REVISION DETAIL
https://phab.mercurial-scm.org/D3949
AFFECTED FILES
hgext/shelve.py
tests/test-shelve.t
CHANGE DETAILS
diff --git a/tests/test-shelve.t b/tests/test-shelve.t
--- a/tests/test-shelve.t
+++ b/tests/test-shelve.t
@@ -68,9 +68,12 @@
-l --list list current shelves
-m --message TEXT use text as shelve message
-n --name NAME use the given name for the shelved commit
- -p --patch show patch
+ -p --patch output patches for changes (provide the names of the
+ shelved changes as positional arguments)
-i --interactive interactive mode, only works while creating a shelve
- --stat output diffstat-style summary of changes
+ --stat output diffstat-style summary of changes (provide
+ the names of the shelved changes as positional
+ arguments)
-I --include PATTERN [+] include names matching the given patterns
-X --exclude PATTERN [+] exclude names matching the given patterns
--mq operate on patch repository
diff --git a/hgext/shelve.py b/hgext/shelve.py
--- a/hgext/shelve.py
+++ b/hgext/shelve.py
@@ -1011,11 +1011,14 @@
('n', 'name', '',
_('use the given name for the shelved commit'), _('NAME')),
('p', 'patch', None,
- _('show patch')),
+ _('output patches for changes (provide the names of the shelved '
+ 'changes as positional arguments)')),
('i', 'interactive', None,
_('interactive mode, only works while creating a shelve')),
('', 'stat', None,
- _('output diffstat-style summary of changes'))] + cmdutil.walkopts,
+ _('output diffstat-style summary of changes (provide the names of '
+ 'the shelved changes as positional arguments)')
+ )] + cmdutil.walkopts,
_('hg shelve [OPTION]... [FILE]...'))
def shelvecmd(ui, repo, *pats, **opts):
'''save and set aside changes from the working directory
To: hooper, #hg-reviewers, pulkit
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list