##// END OF EJS Templates
mq: more instructive use of "--" in qguard help (issue2040)
Martin Geisler -
r10476:3113736d stable
parent child Browse files
Show More
@@ -2152,7 +2152,7 b' def guard(ui, repo, *args, **opts):'
2152
2152
2153 To set guards on another patch::
2153 To set guards on another patch::
2154
2154
2155 hg qguard -- other.patch +2.6.17 -stable
2155 hg qguard other.patch -- +2.6.17 -stable
2156 '''
2156 '''
2157 def status(idx):
2157 def status(idx):
2158 guards = q.series_guards[idx] or ['unguarded']
2158 guards = q.series_guards[idx] or ['unguarded']
@@ -2721,7 +2721,7 b' cmdtable = {'
2721 (guard,
2721 (guard,
2722 [('l', 'list', None, _('list all patches and guards')),
2722 [('l', 'list', None, _('list all patches and guards')),
2723 ('n', 'none', None, _('drop all guards'))],
2723 ('n', 'none', None, _('drop all guards'))],
2724 _('hg qguard [-l] [-n] -- [PATCH] [+GUARD]... [-GUARD]...')),
2724 _('hg qguard [-l] [-n] [PATCH] [-- [+GUARD]... [-GUARD]...]')),
2725 'qheader': (header, [], _('hg qheader [PATCH]')),
2725 'qheader': (header, [], _('hg qheader [PATCH]')),
2726 "^qimport":
2726 "^qimport":
2727 (qimport,
2727 (qimport,
General Comments 0
You need to be logged in to leave comments. Login now