##// 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 1858 return r
1859 1859
1860 1860 def rawcommit(ui, repo, *flist, **rc):
1861 """raw commit interface
1861 """raw commit interface (DEPRECATED)
1862 1862
1863 1863 (DEPRECATED)
1864 1864 Lowlevel commit, for use in helper scripts.
@@ -2379,7 +2379,7 b' table = {'
2379 2379 ('c', 'changeset', None, _('list the changeset')),
2380 2380 ('I', 'include', [], _('include names matching the given patterns')),
2381 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 2383 "bundle":
2384 2384 (bundle,
2385 2385 [],
@@ -2454,7 +2454,7 b' table = {'
2454 2454 [('o', 'output', '', _('print output to file with formatted name')),
2455 2455 ('a', 'text', None, _('treat all files as text')),
2456 2456 ('', 'switch-parent', None, _('diff against the second parent'))],
2457 _('hg export [-a] [-o filespec] REV...')),
2457 _('hg export [-a] [-o OUTFILESPEC] REV...')),
2458 2458 "forget":
2459 2459 (forget,
2460 2460 [('I', 'include', [], _('include names matching the given patterns')),
@@ -2611,7 +2611,7 b' table = {'
2611 2611 ('d', 'date', '', _('record datecode as commit date')),
2612 2612 ('u', 'user', '', _('record user as commiter')),
2613 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 2615 "tags": (tags, [], _('hg tags')),
2616 2616 "tip":
2617 2617 (tip,
General Comments 0
You need to be logged in to leave comments. Login now