comparison hgext/shelve.py @ 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 80c5b2666a96
children 328739ea70c3
comparison
equal deleted inserted replaced
25259:5b05f10c5024 25260:8fa3e995a375
670 ('n', 'name', '', 670 ('n', 'name', '',
671 _('use the given name for the shelved commit'), _('NAME')), 671 _('use the given name for the shelved commit'), _('NAME')),
672 ('p', 'patch', None, 672 ('p', 'patch', None,
673 _('show patch')), 673 _('show patch')),
674 ('i', 'interactive', None, 674 ('i', 'interactive', None,
675 _('interactive mode, only works while creating a shelve' 675 _('interactive mode, only works while creating a shelve')),
676 '(EXPERIMENTAL)')),
677 ('', 'stat', None, 676 ('', 'stat', None,
678 _('output diffstat-style summary of changes'))] + commands.walkopts, 677 _('output diffstat-style summary of changes'))] + commands.walkopts,
679 _('hg shelve [OPTION]... [FILE]...')) 678 _('hg shelve [OPTION]... [FILE]...'))
680 def shelvecmd(ui, repo, *pats, **opts): 679 def shelvecmd(ui, repo, *pats, **opts):
681 '''save and set aside changes from the working directory 680 '''save and set aside changes from the working directory