doc fix
TK Soh
teekaysoh at yahoo.com
Sun Aug 28 01:51:17 UTC 2005
# HG changeset patch
# User TK Soh <teekaysoh at yahoo.com>
# Node ID 35828935dfbf6ab45d401b04c74915cf529de7a1
# Parent 1032a505488ce22ab6c41d5cec877d082f9dff5e
Updated manpage and help.
Updated manpage on change to hg status; standardized description
of -print0 options.
diff -r 1032a505488c -r 35828935dfbf doc/hg.1.txt
--- a/doc/hg.1.txt Sun Aug 28 01:11:32 2005
+++ b/doc/hg.1.txt Sun Aug 28 01:47:52 2005
@@ -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
diff -r 1032a505488c -r 35828935dfbf mercurial/commands.py
--- a/mercurial/commands.py Sun Aug 28 01:11:32 2005
+++ b/mercurial/commands.py Sun Aug 28 01:47:52 2005
@@ -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]..."),
diff -r 1032a505488c -r 35828935dfbf tests/test-help.out
--- a/tests/test-help.out Sun Aug 28 01:11:32 2005
+++ b/tests/test-help.out Sun Aug 28 01:47:52 2005
@@ -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]...
____________________________________________________
Start your day with Yahoo! - make it your home page
http://www.yahoo.com/r/hs
More information about the Mercurial
mailing list