Mercurial > hg-stable
changeset 25260:8fa3e995a375
selve: make 'shelve --interactive' not experimental
It is safe to do as 'shelve -i' uses the same code path as 'commit -i' that is
not experimental.
author | Laurent Charignon <lcharignon@fb.com> |
---|---|
date | Thu, 21 May 2015 14:57:30 -0700 |
parents | 5b05f10c5024 |
children | 27600986a0d9 |
files | hgext/shelve.py tests/test-shelve.t |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/shelve.py Thu May 21 14:34:24 2015 -0700 +++ b/hgext/shelve.py Thu May 21 14:57:30 2015 -0700 @@ -672,8 +672,7 @@ ('p', 'patch', None, _('show patch')), ('i', 'interactive', None, - _('interactive mode, only works while creating a shelve' - '(EXPERIMENTAL)')), + _('interactive mode, only works while creating a shelve')), ('', 'stat', None, _('output diffstat-style summary of changes'))] + commands.walkopts, _('hg shelve [OPTION]... [FILE]...'))
--- a/tests/test-shelve.t Thu May 21 14:34:24 2015 -0700 +++ b/tests/test-shelve.t Thu May 21 14:57:30 2015 -0700 @@ -60,6 +60,7 @@ -m --message TEXT use text as shelve message -n --name NAME use the given name for the shelved commit -p --patch show patch + -i --interactive interactive mode, only works while creating a shelve --stat output diffstat-style summary of changes -I --include PATTERN [+] include names matching the given patterns -X --exclude PATTERN [+] exclude names matching the given patterns