# HG changeset patch # User Laurent Charignon # Date 1432245450 25200 # Node ID 8fa3e995a375244068194c65afea6ba11815b970 # Parent 5b05f10c502486e68a9c713755ad05a33d3849e8 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. diff -r 5b05f10c5024 -r 8fa3e995a375 hgext/shelve.py --- 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]...')) diff -r 5b05f10c5024 -r 8fa3e995a375 tests/test-shelve.t --- 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