##// END OF EJS Templates
shelve: mention walk options in help
Mads Kiilerich -
r20409:0b7a9940 default
parent child Browse files
Show More
@@ -23,7 +23,7 b' shelve".'
23 23
24 24 from mercurial.i18n import _
25 25 from mercurial.node import nullid, nullrev, bin, hex
26 from mercurial import changegroup, cmdutil, scmutil, phases
26 from mercurial import changegroup, cmdutil, scmutil, phases, commands
27 27 from mercurial import error, hg, mdiff, merge, patch, repair, util
28 28 from mercurial import templatefilters
29 29 from mercurial import lock as lockmod
@@ -631,8 +631,8 b' def unshelve(ui, repo, *shelved, **opts)'
631 631 ('p', 'patch', None,
632 632 _('show patch')),
633 633 ('', 'stat', None,
634 _('output diffstat-style summary of changes'))],
635 _('hg shelve'))
634 _('output diffstat-style summary of changes'))] + commands.walkopts,
635 _('hg shelve [OPTION]...'))
636 636 def shelvecmd(ui, repo, *pats, **opts):
637 637 '''save and set aside changes from the working directory
638 638
General Comments 0
You need to be logged in to leave comments. Login now