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.
--- 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