##// END OF EJS Templates
Fixed synopsis for some mq commands
Thomas Arendsen Hein -
r4242:e1cdf5f6 default
parent child Browse files
Show More
@@ -2111,7 +2111,7 b' cmdtable = {'
2111 'hg qfold [-e] [-m <text>] [-l <file] PATCH...'),
2111 'hg qfold [-e] [-m <text>] [-l <file] PATCH...'),
2112 'qguard': (guard, [('l', 'list', None, _('list all patches and guards')),
2112 'qguard': (guard, [('l', 'list', None, _('list all patches and guards')),
2113 ('n', 'none', None, _('drop all guards'))],
2113 ('n', 'none', None, _('drop all guards'))],
2114 'hg qguard [PATCH] [+GUARD...] [-GUARD...]'),
2114 'hg qguard [PATCH] [+GUARD]... [-GUARD]...'),
2115 'qheader': (header, [],
2115 'qheader': (header, [],
2116 _('hg qheader [PATCH]')),
2116 _('hg qheader [PATCH]')),
2117 "^qimport":
2117 "^qimport":
@@ -2156,7 +2156,7 b' cmdtable = {'
2156 ('I', 'include', [], _('include names matching the given patterns')),
2156 ('I', 'include', [], _('include names matching the given patterns')),
2157 ('X', 'exclude', [], _('exclude names matching the given patterns'))
2157 ('X', 'exclude', [], _('exclude names matching the given patterns'))
2158 ] + commands.commitopts,
2158 ] + commands.commitopts,
2159 'hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] FILES...'),
2159 'hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...'),
2160 'qrename|qmv':
2160 'qrename|qmv':
2161 (rename, [], 'hg qrename PATCH1 [PATCH2]'),
2161 (rename, [], 'hg qrename PATCH1 [PATCH2]'),
2162 "qrestore":
2162 "qrestore":
@@ -2177,7 +2177,7 b' cmdtable = {'
2177 ('', 'pop', None,
2177 ('', 'pop', None,
2178 _('pop to before first guarded applied patch')),
2178 _('pop to before first guarded applied patch')),
2179 ('', 'reapply', None, _('pop, then reapply patches'))],
2179 ('', 'reapply', None, _('pop, then reapply patches'))],
2180 'hg qselect [OPTION...] [GUARD...]'),
2180 'hg qselect [OPTION]... [GUARD]...'),
2181 "qseries":
2181 "qseries":
2182 (series,
2182 (series,
2183 [('m', 'missing', None, 'print patches not in series')] + seriesopts,
2183 [('m', 'missing', None, 'print patches not in series')] + seriesopts,
General Comments 0
You need to be logged in to leave comments. Login now