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