comparison mercurial/commands.py @ 1113:6130de75bb2a

Updated manpage and help. Updated manpage on change to hg status; standardized description of -print0 options.
author TK Soh <teekaysoh@yahoo.com>
date Sat, 27 Aug 2005 18:55:14 -0700
parents ee817c5e3ece
children 58371c4c2c8f
comparison
equal deleted inserted replaced
1112:87cbfaf79124 1113:6130de75bb2a
1535 [('I', 'include', [], 'include path in search'), 1535 [('I', 'include', [], 'include path in search'),
1536 ('X', 'exclude', [], 'exclude path from search')], 1536 ('X', 'exclude', [], 'exclude path from search')],
1537 "hg forget [OPTION]... FILE..."), 1537 "hg forget [OPTION]... FILE..."),
1538 "grep": 1538 "grep":
1539 (grep, 1539 (grep,
1540 [('0', 'print0', None, 'terminate file names with NUL'), 1540 [('0', 'print0', None, 'end filenames with NUL'),
1541 ('I', 'include', [], 'include path in search'), 1541 ('I', 'include', [], 'include path in search'),
1542 ('X', 'exclude', [], 'include path in search'), 1542 ('X', 'exclude', [], 'include path in search'),
1543 ('i', 'ignore-case', None, 'ignore case when matching'), 1543 ('i', 'ignore-case', None, 'ignore case when matching'),
1544 ('l', 'files-with-matches', None, 'print names of files with matches'), 1544 ('l', 'files-with-matches', None, 'print names of files with matches'),
1545 ('n', 'line-number', '', 'print line numbers'), 1545 ('n', 'line-number', '', 'print line numbers'),
1560 "incoming|in": (incoming, [], 'hg incoming [SOURCE]'), 1560 "incoming|in": (incoming, [], 'hg incoming [SOURCE]'),
1561 "^init": (init, [], 'hg init [DEST]'), 1561 "^init": (init, [], 'hg init [DEST]'),
1562 "locate": 1562 "locate":
1563 (locate, 1563 (locate,
1564 [('r', 'rev', '', 'revision'), 1564 [('r', 'rev', '', 'revision'),
1565 ('0', 'print0', None, 'end records with NUL'), 1565 ('0', 'print0', None, 'end filenames with NUL'),
1566 ('f', 'fullpath', None, 'print complete paths'), 1566 ('f', 'fullpath', None, 'print complete paths'),
1567 ('I', 'include', [], 'include path in search'), 1567 ('I', 'include', [], 'include path in search'),
1568 ('X', 'exclude', [], 'exclude path from search')], 1568 ('X', 'exclude', [], 'exclude path from search')],
1569 'hg locate [OPTION]... [PATTERN]...'), 1569 'hg locate [OPTION]... [PATTERN]...'),
1570 "^log|history": 1570 "^log|history":
1625 [('m', 'modified', None, 'show only modified files'), 1625 [('m', 'modified', None, 'show only modified files'),
1626 ('a', 'added', None, 'show only added files'), 1626 ('a', 'added', None, 'show only added files'),
1627 ('r', 'removed', None, 'show only removed files'), 1627 ('r', 'removed', None, 'show only removed files'),
1628 ('u', 'unknown', None, 'show only unknown (not tracked) files'), 1628 ('u', 'unknown', None, 'show only unknown (not tracked) files'),
1629 ('n', 'no-status', None, 'hide status prefix'), 1629 ('n', 'no-status', None, 'hide status prefix'),
1630 ('0', 'print0', None, 'end records with NUL'), 1630 ('0', 'print0', None, 'end filenames with NUL'),
1631 ('I', 'include', [], 'include path in search'), 1631 ('I', 'include', [], 'include path in search'),
1632 ('X', 'exclude', [], 'exclude path from search')], 1632 ('X', 'exclude', [], 'exclude path from search')],
1633 "hg status [OPTION]... [FILE]..."), 1633 "hg status [OPTION]... [FILE]..."),
1634 "tag": 1634 "tag":
1635 (tag, 1635 (tag,