Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/commands.py @ 9604:fcc85abc762e
commands: fix missing empty synopses
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 19 Oct 2009 00:21:06 -0500 |
parents | 220d39af2e57 |
children | 3194227a4158 |
comparison
equal
deleted
inserted
replaced
9603:220d39af2e57 | 9604:fcc85abc762e |
---|---|
3326 ('f', 'force', None, | 3326 ('f', 'force', None, |
3327 _('forcibly copy over an existing managed file')), | 3327 _('forcibly copy over an existing managed file')), |
3328 ] + walkopts + dryrunopts, | 3328 ] + walkopts + dryrunopts, |
3329 _('[OPTION]... [SOURCE]... DEST')), | 3329 _('[OPTION]... [SOURCE]... DEST')), |
3330 "debugancestor": (debugancestor, [], _('[INDEX] REV1 REV2')), | 3330 "debugancestor": (debugancestor, [], _('[INDEX] REV1 REV2')), |
3331 "debugcheckstate": (debugcheckstate, []), | 3331 "debugcheckstate": (debugcheckstate, [], ''), |
3332 "debugcommands": (debugcommands, [], _('[COMMAND]')), | 3332 "debugcommands": (debugcommands, [], _('[COMMAND]')), |
3333 "debugcomplete": | 3333 "debugcomplete": |
3334 (debugcomplete, | 3334 (debugcomplete, |
3335 [('o', 'options', None, _('show the command options'))], | 3335 [('o', 'options', None, _('show the command options'))], |
3336 _('[-o] CMD')), | 3336 _('[-o] CMD')), |
3340 _('[-e] DATE [RANGE]')), | 3340 _('[-e] DATE [RANGE]')), |
3341 "debugdata": (debugdata, [], _('FILE REV')), | 3341 "debugdata": (debugdata, [], _('FILE REV')), |
3342 "debugfsinfo": (debugfsinfo, [], _('[PATH]')), | 3342 "debugfsinfo": (debugfsinfo, [], _('[PATH]')), |
3343 "debugindex": (debugindex, [], _('FILE')), | 3343 "debugindex": (debugindex, [], _('FILE')), |
3344 "debugindexdot": (debugindexdot, [], _('FILE')), | 3344 "debugindexdot": (debugindexdot, [], _('FILE')), |
3345 "debuginstall": (debuginstall, []), | 3345 "debuginstall": (debuginstall, [], ''), |
3346 "debugrebuildstate": | 3346 "debugrebuildstate": |
3347 (debugrebuildstate, | 3347 (debugrebuildstate, |
3348 [('r', 'rev', '', _('revision to rebuild to'))], | 3348 [('r', 'rev', '', _('revision to rebuild to'))], |
3349 _('[-r REV] [REV]')), | 3349 _('[-r REV] [REV]')), |
3350 "debugrename": | 3350 "debugrename": |
3567 "showconfig|debugconfig": | 3567 "showconfig|debugconfig": |
3568 (showconfig, | 3568 (showconfig, |
3569 [('u', 'untrusted', None, _('show untrusted configuration options'))], | 3569 [('u', 'untrusted', None, _('show untrusted configuration options'))], |
3570 _('[-u] [NAME]...')), | 3570 _('[-u] [NAME]...')), |
3571 "^summary|sum": | 3571 "^summary|sum": |
3572 (summary, []), | 3572 (summary, [], ''), |
3573 "^status|st": | 3573 "^status|st": |
3574 (status, | 3574 (status, |
3575 [('A', 'all', None, _('show status of all files')), | 3575 [('A', 'all', None, _('show status of all files')), |
3576 ('m', 'modified', None, _('show only modified files')), | 3576 ('m', 'modified', None, _('show only modified files')), |
3577 ('a', 'added', None, _('show only added files')), | 3577 ('a', 'added', None, _('show only added files')), |
3595 ('', 'remove', None, _('remove a tag')), | 3595 ('', 'remove', None, _('remove a tag')), |
3596 # -l/--local is already there, commitopts cannot be used | 3596 # -l/--local is already there, commitopts cannot be used |
3597 ('m', 'message', '', _('use <text> as commit message')), | 3597 ('m', 'message', '', _('use <text> as commit message')), |
3598 ] + commitopts2, | 3598 ] + commitopts2, |
3599 _('[-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')), | 3599 _('[-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')), |
3600 "tags": (tags, []), | 3600 "tags": (tags, [], ''), |
3601 "tip": | 3601 "tip": |
3602 (tip, | 3602 (tip, |
3603 [('p', 'patch', None, _('show patch')), | 3603 [('p', 'patch', None, _('show patch')), |
3604 ('g', 'git', None, _('use git extended diff format')), | 3604 ('g', 'git', None, _('use git extended diff format')), |
3605 ] + templateopts, | 3605 ] + templateopts, |