summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Austad <henrik@austad.us>2009-01-05 15:25:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-01-05 20:04:23 (GMT)
commit0ddd93b2717d4da074485d42a08e4d3824580afe (patch)
treea2161361ad5db1bff70ca03c464c399428f85797
parentc7719fbe46deae03578c4e19516b9567e98b9f04 (diff)
downloadgit-0ddd93b2717d4da074485d42a08e4d3824580afe.zip
git-0ddd93b2717d4da074485d42a08e4d3824580afe.tar.gz
git-0ddd93b2717d4da074485d42a08e4d3824580afe.tar.bz2
Be consistent in switch usage for tar
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>
-rw-r--r--Documentation/user-manual.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt
index 5242a7e..19f571a 100644
--- a/Documentation/user-manual.txt
+++ b/Documentation/user-manual.txt
@@ -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: