Be consistent in switch usage for tar
authorHenrik Austad <henrik@austad.us>
Mon, 5 Jan 2009 15:25:37 +0000 (16:25 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 5 Jan 2009 20:04:23 +0000 (12:04 -0800)
tar handles switches with and witout preceding '-', but the
documentation should be consistent nonetheless.

Signed-off-by: Henrik Austad <henrik@austad.us>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/user-manual.txt
index 5242a7e97b994b4a8d62b7cff2f4045166b797e6..19f571ae3bcab2fd96288dfa156062a7fbf89b5e 100644 (file)
@@ -1009,7 +1009,7 @@ $ git init
 If you have some initial content (say, a tarball):
 
 -------------------------------------------------
-$ tar -xzvf project.tar.gz
+$ tar xzvf project.tar.gz
 $ cd project
 $ git init
 $ git add . # include everything below ./ in the first commit: