##// END OF EJS Templates
Corrected synopsis for many commands....
Thomas Arendsen Hein -
r3885:6081b4c6 default
parent child Browse files
Show More
@@ -2610,7 +2610,7 b' table = {'
2610 ('n', 'number', None, _('list the revision number (default)')),
2610 ('n', 'number', None, _('list the revision number (default)')),
2611 ('c', 'changeset', None, _('list the changeset')),
2611 ('c', 'changeset', None, _('list the changeset')),
2612 ] + walkopts,
2612 ] + walkopts,
2613 _('hg annotate [-r REV] [-a] [-u] [-d] [-n] [-c] FILE...')),
2613 _('hg annotate [-r REV] [-f] [-a] [-u] [-d] [-n] [-c] FILE...')),
2614 "archive":
2614 "archive":
2615 (archive,
2615 (archive,
2616 [('', 'no-decode', None, _('do not pass files through decoders')),
2616 [('', 'no-decode', None, _('do not pass files through decoders')),
@@ -2639,7 +2639,7 b' table = {'
2639 ('', 'base', [],
2639 ('', 'base', [],
2640 _('a base changeset to specify instead of a destination')),
2640 _('a base changeset to specify instead of a destination')),
2641 ] + remoteopts,
2641 ] + remoteopts,
2642 _('hg bundle [--base REV]... [--rev REV]... FILE [DEST]')),
2642 _('hg bundle [-f] [-r REV]... [--base REV]... FILE [DEST]')),
2643 "cat":
2643 "cat":
2644 (cat,
2644 (cat,
2645 [('o', 'output', '', _('print output to file with formatted name')),
2645 [('o', 'output', '', _('print output to file with formatted name')),
@@ -2708,7 +2708,7 b' table = {'
2708 ('B', 'ignore-blank-lines', None,
2708 ('B', 'ignore-blank-lines', None,
2709 _('ignore changes whose lines are all blank')),
2709 _('ignore changes whose lines are all blank')),
2710 ] + walkopts,
2710 ] + walkopts,
2711 _('hg diff [-a] [-I] [-X] [-r REV1 [-r REV2]] [FILE]...')),
2711 _('hg diff [OPTION]... [-r REV1 [-r REV2]] [FILE]...')),
2712 "^export":
2712 "^export":
2713 (export,
2713 (export,
2714 [('o', 'output', '', _('print output to file with formatted name')),
2714 [('o', 'output', '', _('print output to file with formatted name')),
@@ -2716,7 +2716,7 b' table = {'
2716 ('g', 'git', None, _('use git extended diff format')),
2716 ('g', 'git', None, _('use git extended diff format')),
2717 ('', 'nodates', None, _("don't include dates in diff headers")),
2717 ('', 'nodates', None, _("don't include dates in diff headers")),
2718 ('', 'switch-parent', None, _('diff against the second parent'))],
2718 ('', 'switch-parent', None, _('diff against the second parent'))],
2719 _('hg export [-a] [-o OUTFILESPEC] REV...')),
2719 _('hg export [OPTION]... [-o OUTFILESPEC] REV...')),
2720 "grep":
2720 "grep":
2721 (grep,
2721 (grep,
2722 [('0', 'print0', None, _('end fields with NUL')),
2722 [('0', 'print0', None, _('end fields with NUL')),
@@ -2760,10 +2760,12 b' table = {'
2760 ('r', 'rev', [], _('a specific revision up to which you would like to pull')),
2760 ('r', 'rev', [], _('a specific revision up to which you would like to pull')),
2761 ('', 'template', '', _('display with template')),
2761 ('', 'template', '', _('display with template')),
2762 ] + remoteopts,
2762 ] + remoteopts,
2763 _('hg incoming [-p] [-n] [-M] [-r REV]...'
2763 _('hg incoming [-p] [-n] [-M] [-f] [-r REV]...'
2764 ' [--bundle FILENAME] [SOURCE]')),
2764 ' [--bundle FILENAME] [SOURCE]')),
2765 "^init":
2765 "^init":
2766 (init, remoteopts, _('hg init [-e FILE] [--remotecmd FILE] [DEST]')),
2766 (init,
2767 remoteopts,
2768 _('hg init [-e CMD] [--remotecmd CMD] [DEST]')),
2767 "locate":
2769 "locate":
2768 (locate,
2770 (locate,
2769 [('r', 'rev', '', _('search the repository as it stood at rev')),
2771 [('r', 'rev', '', _('search the repository as it stood at rev')),
@@ -2810,7 +2812,7 b' table = {'
2810 ('n', 'newest-first', None, _('show newest record first')),
2812 ('n', 'newest-first', None, _('show newest record first')),
2811 ('', 'template', '', _('display with template')),
2813 ('', 'template', '', _('display with template')),
2812 ] + remoteopts,
2814 ] + remoteopts,
2813 _('hg outgoing [-M] [-p] [-n] [-r REV]... [DEST]')),
2815 _('hg outgoing [-M] [-p] [-n] [-f] [-r REV]... [DEST]')),
2814 "^parents":
2816 "^parents":
2815 (parents,
2817 (parents,
2816 [('b', 'branches', None, _('show branches (DEPRECATED)')),
2818 [('b', 'branches', None, _('show branches (DEPRECATED)')),
@@ -2825,15 +2827,16 b' table = {'
2825 _('update to new tip if changesets were pulled')),
2827 _('update to new tip if changesets were pulled')),
2826 ('f', 'force', None,
2828 ('f', 'force', None,
2827 _('run even when remote repository is unrelated')),
2829 _('run even when remote repository is unrelated')),
2828 ('r', 'rev', [], _('a specific revision up to which you would like to pull')),
2830 ('r', 'rev', [],
2831 _('a specific revision up to which you would like to pull')),
2829 ] + remoteopts,
2832 ] + remoteopts,
2830 _('hg pull [-u] [-r REV]... [-e FILE] [--remotecmd FILE] [SOURCE]')),
2833 _('hg pull [-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]')),
2831 "^push":
2834 "^push":
2832 (push,
2835 (push,
2833 [('f', 'force', None, _('force push')),
2836 [('f', 'force', None, _('force push')),
2834 ('r', 'rev', [], _('a specific revision you would like to push')),
2837 ('r', 'rev', [], _('a specific revision you would like to push')),
2835 ] + remoteopts,
2838 ] + remoteopts,
2836 _('hg push [-f] [-r REV]... [-e FILE] [--remotecmd FILE] [DEST]')),
2839 _('hg push [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')),
2837 "debugrawcommit|rawcommit":
2840 "debugrawcommit|rawcommit":
2838 (rawcommit,
2841 (rawcommit,
2839 [('p', 'parent', [], _('parent')),
2842 [('p', 'parent', [], _('parent')),
@@ -2863,7 +2866,7 b' table = {'
2863 ('r', 'rev', '', _('revision to revert to')),
2866 ('r', 'rev', '', _('revision to revert to')),
2864 ('', 'no-backup', None, _('do not save backup copies of files')),
2867 ('', 'no-backup', None, _('do not save backup copies of files')),
2865 ] + walkopts + dryrunopts,
2868 ] + walkopts + dryrunopts,
2866 _('hg revert [-r REV] [NAME]...')),
2869 _('hg revert [OPTION]... [-r REV] [NAME]...')),
2867 "rollback": (rollback, [], _('hg rollback')),
2870 "rollback": (rollback, [], _('hg rollback')),
2868 "root": (root, [], _('hg root')),
2871 "root": (root, [], _('hg root')),
2869 "showconfig|debugconfig":
2872 "showconfig|debugconfig":
@@ -2932,7 +2935,7 b' table = {'
2932 _('checkout the head of a specific branch (DEPRECATED)')),
2935 _('checkout the head of a specific branch (DEPRECATED)')),
2933 ('C', 'clean', None, _('overwrite locally modified files')),
2936 ('C', 'clean', None, _('overwrite locally modified files')),
2934 ('d', 'date', '', _('tipmost revision matching date'))],
2937 ('d', 'date', '', _('tipmost revision matching date'))],
2935 _('hg update [-C] [REV]')),
2938 _('hg update [-C] [-d DATE] [REV]')),
2936 "verify": (verify, [], _('hg verify')),
2939 "verify": (verify, [], _('hg verify')),
2937 "version": (version_, [], _('hg version')),
2940 "version": (version_, [], _('hg version')),
2938 }
2941 }
@@ -163,7 +163,7 b' options:'
163 -I --include include names matching the given patterns
163 -I --include include names matching the given patterns
164 -X --exclude exclude names matching the given patterns
164 -X --exclude exclude names matching the given patterns
165 -n --dry-run do not perform actions, just print output
165 -n --dry-run do not perform actions, just print output
166 hg diff [-a] [-I] [-X] [-r REV1 [-r REV2]] [FILE]...
166 hg diff [OPTION]... [-r REV1 [-r REV2]] [FILE]...
167
167
168 diff repository (or selected files)
168 diff repository (or selected files)
169
169
General Comments 0
You need to be logged in to leave comments. Login now