Mercurial > hg
changeset 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 | 87cbfaf79124 |
children | 58371c4c2c8f |
files | doc/hg.1.txt mercurial/commands.py tests/test-help.out |
diffstat | 3 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/hg.1.txt Sat Aug 27 18:40:25 2005 -0700 +++ b/doc/hg.1.txt Sat Aug 27 18:55:14 2005 -0700 @@ -435,7 +435,7 @@ -a, --added show only added files -r, --removed show only removed files -u, --unknown show only unknown (not tracked) files - -p, --strip strip status prefix + -n, --no-status hide status prefix -0, --print0 end filenames with NUL, for use with xargs -I, --include <pat> include names matching the given patterns -X, --exclude <pat> exclude names matching the given patterns
--- a/mercurial/commands.py Sat Aug 27 18:40:25 2005 -0700 +++ b/mercurial/commands.py Sat Aug 27 18:55:14 2005 -0700 @@ -1537,7 +1537,7 @@ "hg forget [OPTION]... FILE..."), "grep": (grep, - [('0', 'print0', None, 'terminate file names with NUL'), + [('0', 'print0', None, 'end filenames with NUL'), ('I', 'include', [], 'include path in search'), ('X', 'exclude', [], 'include path in search'), ('i', 'ignore-case', None, 'ignore case when matching'), @@ -1562,7 +1562,7 @@ "locate": (locate, [('r', 'rev', '', 'revision'), - ('0', 'print0', None, 'end records with NUL'), + ('0', 'print0', None, 'end filenames with NUL'), ('f', 'fullpath', None, 'print complete paths'), ('I', 'include', [], 'include path in search'), ('X', 'exclude', [], 'exclude path from search')], @@ -1627,7 +1627,7 @@ ('r', 'removed', None, 'show only removed files'), ('u', 'unknown', None, 'show only unknown (not tracked) files'), ('n', 'no-status', None, 'hide status prefix'), - ('0', 'print0', None, 'end records with NUL'), + ('0', 'print0', None, 'end filenames with NUL'), ('I', 'include', [], 'include path in search'), ('X', 'exclude', [], 'exclude path from search')], "hg status [OPTION]... [FILE]..."),
--- a/tests/test-help.out Sat Aug 27 18:40:25 2005 -0700 +++ b/tests/test-help.out Sat Aug 27 18:55:14 2005 -0700 @@ -157,7 +157,7 @@ -r --removed show only removed files -u --unknown show only unknown (not tracked) files -n --no-status hide status prefix - -0 --print0 end records with NUL + -0 --print0 end filenames with NUL -I --include include path in search -X --exclude exclude path from search hg status [OPTION]... [FILE]...