##// END OF EJS Templates
fix the synopsis of some commands, mark rawcommit as deprecated in short help
Benoit Boissinot -
r1812:a81f99df default
parent child Browse files
Show More
@@ -1858,7 +1858,7 b' def push(ui, repo, dest="default-push", '
1858 return r
1858 return r
1859
1859
1860 def rawcommit(ui, repo, *flist, **rc):
1860 def rawcommit(ui, repo, *flist, **rc):
1861 """raw commit interface
1861 """raw commit interface (DEPRECATED)
1862
1862
1863 (DEPRECATED)
1863 (DEPRECATED)
1864 Lowlevel commit, for use in helper scripts.
1864 Lowlevel commit, for use in helper scripts.
@@ -2379,7 +2379,7 b' table = {'
2379 ('c', 'changeset', None, _('list the changeset')),
2379 ('c', 'changeset', None, _('list the changeset')),
2380 ('I', 'include', [], _('include names matching the given patterns')),
2380 ('I', 'include', [], _('include names matching the given patterns')),
2381 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2381 ('X', 'exclude', [], _('exclude names matching the given patterns'))],
2382 _('hg annotate [-r <rev> -u -n -c -d] [files ...]')),
2382 _('hg annotate [-r REV] [-a] [-u] [-n] [-c] [-d] [FILES...]')),
2383 "bundle":
2383 "bundle":
2384 (bundle,
2384 (bundle,
2385 [],
2385 [],
@@ -2454,7 +2454,7 b' table = {'
2454 [('o', 'output', '', _('print output to file with formatted name')),
2454 [('o', 'output', '', _('print output to file with formatted name')),
2455 ('a', 'text', None, _('treat all files as text')),
2455 ('a', 'text', None, _('treat all files as text')),
2456 ('', 'switch-parent', None, _('diff against the second parent'))],
2456 ('', 'switch-parent', None, _('diff against the second parent'))],
2457 _('hg export [-a] [-o filespec] REV...')),
2457 _('hg export [-a] [-o OUTFILESPEC] REV...')),
2458 "forget":
2458 "forget":
2459 (forget,
2459 (forget,
2460 [('I', 'include', [], _('include names matching the given patterns')),
2460 [('I', 'include', [], _('include names matching the given patterns')),
@@ -2611,7 +2611,7 b' table = {'
2611 ('d', 'date', '', _('record datecode as commit date')),
2611 ('d', 'date', '', _('record datecode as commit date')),
2612 ('u', 'user', '', _('record user as commiter')),
2612 ('u', 'user', '', _('record user as commiter')),
2613 ('r', 'rev', '', _('revision to tag'))],
2613 ('r', 'rev', '', _('revision to tag'))],
2614 _('hg tag [-l -m <text> -d <datecode> -u <user> -r <rev>] <name>')),
2614 _('hg tag [-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME')),
2615 "tags": (tags, [], _('hg tags')),
2615 "tags": (tags, [], _('hg tags')),
2616 "tip":
2616 "tip":
2617 (tip,
2617 (tip,
General Comments 0
You need to be logged in to leave comments. Login now