##// END OF EJS Templates
keyword: uppercase short option for kwfiles --all, like hg status -A...
Christian Ebert -
r9494:bdd8a41e default
parent child Browse files
Show More
@@ -382,7 +382,7 b' def files(ui, repo, *pats, **opts):'
382 See "hg help keyword" on how to construct patterns both for
382 See "hg help keyword" on how to construct patterns both for
383 inclusion and exclusion of files.
383 inclusion and exclusion of files.
384
384
385 With -a/--all and -v/--verbose the codes used to show the status
385 With -A/--all and -v/--verbose the codes used to show the status
386 of files are::
386 of files are::
387
387
388 K = keyword expansion candidate
388 K = keyword expansion candidate
@@ -549,9 +549,11 b' cmdtable = {'
549 _('hg kwexpand [OPTION]... [FILE]...')),
549 _('hg kwexpand [OPTION]... [FILE]...')),
550 'kwfiles':
550 'kwfiles':
551 (files,
551 (files,
552 [('a', 'all', None, _('show keyword status flags of all files')),
552 [('A', 'all', None, _('show keyword status flags of all files')),
553 ('i', 'ignore', None, _('show files excluded from expansion')),
553 ('i', 'ignore', None, _('show files excluded from expansion')),
554 ('u', 'unknown', None, _('only show unknown (not tracked) files')),
554 ('u', 'unknown', None, _('only show unknown (not tracked) files')),
555 ('a', 'all', None,
556 _('show keyword status flags of all files (DEPRECATED)')),
555 ('u', 'untracked', None, _('only show untracked files (DEPRECATED)')),
557 ('u', 'untracked', None, _('only show untracked files (DEPRECATED)')),
556 ] + commands.walkopts,
558 ] + commands.walkopts,
557 _('hg kwfiles [OPTION]... [FILE]...')),
559 _('hg kwfiles [OPTION]... [FILE]...')),
General Comments 0
You need to be logged in to leave comments. Login now