Show More
@@ -1078,16 +1078,16 b' table = {' | |||||
1078 | "^add": (add, |
|
1078 | "^add": (add, | |
1079 | [('I', 'include', [], 'include path in search'), |
|
1079 | [('I', 'include', [], 'include path in search'), | |
1080 | ('X', 'exclude', [], 'exclude path from search')], |
|
1080 | ('X', 'exclude', [], 'exclude path from search')], | |
1081 |
"hg add [ |
|
1081 | "hg add [FILE]..."), | |
1082 |
"addremove": (addremove, [], "hg addremove [FILE |
|
1082 | "addremove": (addremove, [], "hg addremove [FILE]..."), | |
1083 | "^annotate": |
|
1083 | "^annotate": | |
1084 | (annotate, |
|
1084 | (annotate, | |
1085 | [('I', 'include', [], 'include path in search'), |
|
1085 | [('r', 'rev', '', 'revision'), | |
1086 | ('X', 'exclude', [], 'exclude path from search'), |
|
|||
1087 | ('r', 'rev', '', 'revision'), |
|
|||
1088 | ('u', 'user', None, 'show user'), |
|
1086 | ('u', 'user', None, 'show user'), | |
1089 | ('n', 'number', None, 'show revision number'), |
|
1087 | ('n', 'number', None, 'show revision number'), | |
1090 |
('c', 'changeset', None, 'show changeset') |
|
1088 | ('c', 'changeset', None, 'show changeset'), | |
|
1089 | ('I', 'include', [], 'include path in search'), | |||
|
1090 | ('X', 'exclude', [], 'exclude path from search')], | |||
1091 | 'hg annotate [-r REV] [-u] [-n] [-c] FILE...'), |
|
1091 | 'hg annotate [-r REV] [-u] [-n] [-c] FILE...'), | |
1092 | "cat": |
|
1092 | "cat": | |
1093 | (cat, |
|
1093 | (cat, | |
@@ -1101,7 +1101,7 b' table = {' | |||||
1101 | (commit, |
|
1101 | (commit, | |
1102 | [('A', 'addremove', None, 'run add/remove during commit'), |
|
1102 | [('A', 'addremove', None, 'run add/remove during commit'), | |
1103 | ('m', 'text', "", 'commit message'), |
|
1103 | ('m', 'text', "", 'commit message'), | |
1104 | ('t', 'text', "", 'commit message (deprecated)'), |
|
1104 | ('t', 'text', "", 'commit message (deprecated: use -m)'), | |
1105 | ('l', 'logfile', "", 'commit text file'), |
|
1105 | ('l', 'logfile', "", 'commit text file'), | |
1106 | ('d', 'date', "", 'date code'), |
|
1106 | ('d', 'date', "", 'date code'), | |
1107 | ('u', 'user', "", 'user')], |
|
1107 | ('u', 'user', "", 'user')], | |
@@ -1113,9 +1113,9 b' table = {' | |||||
1113 | "debugindexdot": (debugindexdot, [], 'debugindexdot FILE'), |
|
1113 | "debugindexdot": (debugindexdot, [], 'debugindexdot FILE'), | |
1114 | "^diff": |
|
1114 | "^diff": | |
1115 | (diff, |
|
1115 | (diff, | |
1116 |
[(' |
|
1116 | [('r', 'rev', [], 'revision'), | |
1117 |
(' |
|
1117 | ('I', 'include', [], 'include path in search'), | |
1118 |
(' |
|
1118 | ('X', 'exclude', [], 'exclude path from search')], | |
1119 | 'hg diff [-r REV1 [-r REV2]] [FILE]...'), |
|
1119 | 'hg diff [-r REV1 [-r REV2]] [FILE]...'), | |
1120 | "^export": |
|
1120 | "^export": | |
1121 | (export, |
|
1121 | (export, | |
@@ -1133,12 +1133,12 b' table = {' | |||||
1133 | "^init": (init, [], 'hg init'), |
|
1133 | "^init": (init, [], 'hg init'), | |
1134 | "locate": |
|
1134 | "locate": | |
1135 | (locate, |
|
1135 | (locate, | |
1136 |
[(' |
|
1136 | [('r', 'rev', '', 'revision'), | |
|
1137 | ('0', 'print0', None, 'end records with NUL'), | |||
1137 | ('f', 'fullpath', None, 'print complete paths'), |
|
1138 | ('f', 'fullpath', None, 'print complete paths'), | |
1138 | ('I', 'include', [], 'include path in search'), |
|
1139 | ('I', 'include', [], 'include path in search'), | |
1139 | ('r', 'rev', '', 'revision'), |
|
|||
1140 | ('X', 'exclude', [], 'exclude path from search')], |
|
1140 | ('X', 'exclude', [], 'exclude path from search')], | |
1141 |
'hg locate [ |
|
1141 | 'hg locate [-r REV] [-f] [-0] [PATTERN]...'), | |
1142 | "^log|history": |
|
1142 | "^log|history": | |
1143 | (log, |
|
1143 | (log, | |
1144 | [('r', 'rev', [], 'revision'), |
|
1144 | [('r', 'rev', [], 'revision'), | |
@@ -1167,7 +1167,7 b' table = {' | |||||
1167 | (revert, |
|
1167 | (revert, | |
1168 | [("n", "nonrecursive", None, "don't recurse into subdirs"), |
|
1168 | [("n", "nonrecursive", None, "don't recurse into subdirs"), | |
1169 | ("r", "rev", "", "revision")], |
|
1169 | ("r", "rev", "", "revision")], | |
1170 | "hg revert [-n] [-r REV] NAME..."), |
|
1170 | "hg revert [-n] [-r REV] [NAME]..."), | |
1171 | "root": (root, [], "hg root"), |
|
1171 | "root": (root, [], "hg root"), | |
1172 | "^serve": |
|
1172 | "^serve": | |
1173 | (serve, |
|
1173 | (serve, | |
@@ -1182,7 +1182,7 b' table = {' | |||||
1182 | "^status": (status, |
|
1182 | "^status": (status, | |
1183 | [('I', 'include', [], 'include path in search'), |
|
1183 | [('I', 'include', [], 'include path in search'), | |
1184 | ('X', 'exclude', [], 'exclude path from search')], |
|
1184 | ('X', 'exclude', [], 'exclude path from search')], | |
1185 |
'hg status [ |
|
1185 | 'hg status [FILE]...'), | |
1186 | "tag": |
|
1186 | "tag": | |
1187 | (tag, |
|
1187 | (tag, | |
1188 | [('l', 'local', None, 'make the tag local'), |
|
1188 | [('l', 'local', None, 'make the tag local'), |
@@ -33,7 +33,7 b' basic hg commands (use "hg help -v" for ' | |||||
33 | status show changed files in the working directory |
|
33 | status show changed files in the working directory | |
34 | update update or merge working directory |
|
34 | update update or merge working directory | |
35 | hg add: option -h not recognized |
|
35 | hg add: option -h not recognized | |
36 |
hg add [ |
|
36 | hg add [FILE]... | |
37 |
|
37 | |||
38 | -I --include |
|
38 | -I --include | |
39 | include path in search |
|
39 | include path in search | |
@@ -42,7 +42,7 b' hg add [OPTIONS] [FILES]' | |||||
42 |
|
42 | |||
43 | add the specified files on the next commit |
|
43 | add the specified files on the next commit | |
44 | hg add: option --skjdfks not recognized |
|
44 | hg add: option --skjdfks not recognized | |
45 |
hg add [ |
|
45 | hg add [FILE]... | |
46 |
|
46 | |||
47 | -I --include |
|
47 | -I --include | |
48 | include path in search |
|
48 | include path in search | |
@@ -52,12 +52,12 b' hg add [OPTIONS] [FILES]' | |||||
52 | add the specified files on the next commit |
|
52 | add the specified files on the next commit | |
53 | hg diff [-r REV1 [-r REV2]] [FILE]... |
|
53 | hg diff [-r REV1 [-r REV2]] [FILE]... | |
54 |
|
54 | |||
|
55 | -r --rev | |||
|
56 | revision | |||
55 | -I --include |
|
57 | -I --include | |
56 | include path in search |
|
58 | include path in search | |
57 | -X --exclude |
|
59 | -X --exclude | |
58 | exclude path from search |
|
60 | exclude path from search | |
59 | -r --rev |
|
|||
60 | revision |
|
|||
61 |
|
61 | |||
62 | diff working directory (or selected files) |
|
62 | diff working directory (or selected files) | |
63 | hg: unknown command foo |
|
63 | hg: unknown command foo |
General Comments 0
You need to be logged in to leave comments.
Login now