# HG changeset patch # User Benoit Boissinot # Date 1141163449 -3600 # Node ID a81f99dfaa2aec59208ddce17658b0c93e2a2105 # Parent 6cb548cffdf5ada516a66a7453d90eae5df2b50c fix the synopsis of some commands, mark rawcommit as deprecated in short help diff -r 6cb548cffdf5 -r a81f99dfaa2a mercurial/commands.py --- a/mercurial/commands.py Tue Feb 28 00:46:06 2006 +0100 +++ b/mercurial/commands.py Tue Feb 28 22:50:49 2006 +0100 @@ -1858,7 +1858,7 @@ return r def rawcommit(ui, repo, *flist, **rc): - """raw commit interface + """raw commit interface (DEPRECATED) (DEPRECATED) Lowlevel commit, for use in helper scripts. @@ -2379,7 +2379,7 @@ ('c', 'changeset', None, _('list the changeset')), ('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns'))], - _('hg annotate [-r -u -n -c -d] [files ...]')), + _('hg annotate [-r REV] [-a] [-u] [-n] [-c] [-d] [FILES...]')), "bundle": (bundle, [], @@ -2454,7 +2454,7 @@ [('o', 'output', '', _('print output to file with formatted name')), ('a', 'text', None, _('treat all files as text')), ('', 'switch-parent', None, _('diff against the second parent'))], - _('hg export [-a] [-o filespec] REV...')), + _('hg export [-a] [-o OUTFILESPEC] REV...')), "forget": (forget, [('I', 'include', [], _('include names matching the given patterns')), @@ -2611,7 +2611,7 @@ ('d', 'date', '', _('record datecode as commit date')), ('u', 'user', '', _('record user as commiter')), ('r', 'rev', '', _('revision to tag'))], - _('hg tag [-l -m -d -u -r ] ')), + _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME')), "tags": (tags, [], _('hg tags')), "tip": (tip,