Set HTTP user agent to git/GIT_VERSION
[git.git] / Documentation / tutorial.txt
index a09bbea..fa79b01 100644 (file)
@@ -18,7 +18,7 @@ Assume you have a tarball project.tar.gz with your initial work.  You
 can place it under git revision control as follows.
 
 ------------------------------------------------
-$ tar -xzf project.tar.gz
+$ tar xzf project.tar.gz
 $ cd project
 $ git init-db
 ------------------------------------------------
@@ -309,7 +309,7 @@ git diff HEAD^^ HEAD^
 -------------------------------------
 
 shows the difference between that previous state and the state two
-commits ago.  Also, HEAD~5 can be used as a shorthand for HEAD^^^^^,
+commits ago.  Also, HEAD~5 can be used as a shorthand for HEAD{caret}{caret}{caret}{caret}{caret},
 and more generally HEAD~n can refer to the nth previous commit.
 Commits representing merges have more than one parent, and you can
 specify which parent to follow in that case; see