##// END OF EJS Templates
typo fix in command help text...
TK Soh -
r913:46581ad4 default
parent child Browse files
Show More
@@ -1208,7 +1208,7 b' table = {'
1208 (add,
1208 (add,
1209 [('I', 'include', [], 'include path in search'),
1209 [('I', 'include', [], 'include path in search'),
1210 ('X', 'exclude', [], 'exclude path from search')],
1210 ('X', 'exclude', [], 'exclude path from search')],
1211 "hg add [FILE]..."),
1211 "hg add [OPTION]... [FILE]..."),
1212 "addremove":
1212 "addremove":
1213 (addremove,
1213 (addremove,
1214 [('I', 'include', [], 'include path in search'),
1214 [('I', 'include', [], 'include path in search'),
@@ -1222,7 +1222,7 b' table = {'
1222 ('c', 'changeset', None, 'show changeset'),
1222 ('c', 'changeset', None, 'show changeset'),
1223 ('I', 'include', [], 'include path in search'),
1223 ('I', 'include', [], 'include path in search'),
1224 ('X', 'exclude', [], 'exclude path from search')],
1224 ('X', 'exclude', [], 'exclude path from search')],
1225 'hg annotate [-r REV] [-u] [-n] [-c] FILE...'),
1225 'hg annotate [OPTION]... FILE...'),
1226 "cat":
1226 "cat":
1227 (cat,
1227 (cat,
1228 [('o', 'output', "", 'output to file')],
1228 [('o', 'output', "", 'output to file')],
@@ -1251,13 +1251,13 b' table = {'
1251 (debugwalk,
1251 (debugwalk,
1252 [('I', 'include', [], 'include path in search'),
1252 [('I', 'include', [], 'include path in search'),
1253 ('X', 'exclude', [], 'exclude path from search')],
1253 ('X', 'exclude', [], 'exclude path from search')],
1254 'debugwalk [OPTIONS]... [FILE]...'),
1254 'debugwalk [OPTION]... [FILE]...'),
1255 "^diff":
1255 "^diff":
1256 (diff,
1256 (diff,
1257 [('r', 'rev', [], 'revision'),
1257 [('r', 'rev', [], 'revision'),
1258 ('I', 'include', [], 'include path in search'),
1258 ('I', 'include', [], 'include path in search'),
1259 ('X', 'exclude', [], 'exclude path from search')],
1259 ('X', 'exclude', [], 'exclude path from search')],
1260 'hg diff [-r REV1 [-r REV2]] [FILE]...'),
1260 'hg diff [-I] [-X] [-r REV1 [-r REV2]] [FILE]...'),
1261 "^export":
1261 "^export":
1262 (export,
1262 (export,
1263 [('o', 'output', "", 'output to file')],
1263 [('o', 'output', "", 'output to file')],
@@ -1266,7 +1266,7 b' table = {'
1266 (forget,
1266 (forget,
1267 [('I', 'include', [], 'include path in search'),
1267 [('I', 'include', [], 'include path in search'),
1268 ('X', 'exclude', [], 'exclude path from search')],
1268 ('X', 'exclude', [], 'exclude path from search')],
1269 "hg forget FILE..."),
1269 "hg forget [OPTION]... FILE..."),
1270 "heads":
1270 "heads":
1271 (heads,
1271 (heads,
1272 [('b', 'branches', None, 'find branch info')],
1272 [('b', 'branches', None, 'find branch info')],
@@ -1286,7 +1286,7 b' table = {'
1286 ('f', 'fullpath', None, 'print complete paths'),
1286 ('f', 'fullpath', None, 'print complete paths'),
1287 ('I', 'include', [], 'include path in search'),
1287 ('I', 'include', [], 'include path in search'),
1288 ('X', 'exclude', [], 'exclude path from search')],
1288 ('X', 'exclude', [], 'exclude path from search')],
1289 'hg locate [-r REV] [-f] [-0] [PATTERN]...'),
1289 'hg locate [OPTION]... [PATTERN]...'),
1290 "^log|history":
1290 "^log|history":
1291 (log,
1291 (log,
1292 [('r', 'rev', [], 'revision'),
1292 [('r', 'rev', [], 'revision'),
@@ -1302,7 +1302,7 b' table = {'
1302 "^push":
1302 "^push":
1303 (push,
1303 (push,
1304 [('f', 'force', None, 'force push')],
1304 [('f', 'force', None, 'force push')],
1305 'hg push [DEST]'),
1305 'hg push [-f] [DEST]'),
1306 "rawcommit":
1306 "rawcommit":
1307 (rawcommit,
1307 (rawcommit,
1308 [('p', 'parent', [], 'parent'),
1308 [('p', 'parent', [], 'parent'),
@@ -1340,7 +1340,7 b' table = {'
1340 ('u', 'unknown', None, 'show only unknown (not tracked) files'),
1340 ('u', 'unknown', None, 'show only unknown (not tracked) files'),
1341 ('I', 'include', [], 'include path in search'),
1341 ('I', 'include', [], 'include path in search'),
1342 ('X', 'exclude', [], 'exclude path from search')],
1342 ('X', 'exclude', [], 'exclude path from search')],
1343 "hg status [FILE]..."),
1343 "hg status [OPTION]... [FILE]..."),
1344 "tag":
1344 "tag":
1345 (tag,
1345 (tag,
1346 [('l', 'local', None, 'make the tag local'),
1346 [('l', 'local', None, 'make the tag local'),
General Comments 0
You need to be logged in to leave comments. Login now