aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/user-manual.txt
diff options
context:
space:
mode:
authorHenrik Austad <henrik@austad.us>2009-01-05 16:25:37 +0100
committerJunio C Hamano <gitster@pobox.com>2009-01-05 12:04:23 -0800
commit0ddd93b2717d4da074485d42a08e4d3824580afe (patch)
treea2161361ad5db1bff70ca03c464c399428f85797 /Documentation/user-manual.txt
parentc7719fbe46deae03578c4e19516b9567e98b9f04 (diff)
downloadgit-0ddd93b2717d4da074485d42a08e4d3824580afe.tar.gz
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>
Diffstat (limited to 'Documentation/user-manual.txt')
-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 5242a7e97b..19f571ae3b 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: