aboutsummaryrefslogtreecommitdiff
path: root/Documentation/tutorial.txt
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2006-05-29 19:31:33 -0400
committerJunio C Hamano <junkio@cox.net>2006-05-29 23:14:45 -0700
commit38573864f893653be012dd77c2da77f9ecbb1e02 (patch)
tree50f9a3cdc2eed93d6f26cde3bdd4273f49ae0e09 /Documentation/tutorial.txt
parent2be1bc48ffe04d97ca61e2b7988e6870cd37766b (diff)
downloadgit-38573864f893653be012dd77c2da77f9ecbb1e02.tar.gz
git-38573864f893653be012dd77c2da77f9ecbb1e02.tar.xz
documentation: add brief mention of cat-file to tutorial part I
I'd rather avoid git cat-file so early on, but the git-cat-file -p old-commit:/path/to/file trick is too useful.... Also fix a nearby typo while we're at it. Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/tutorial.txt')
-rw-r--r--Documentation/tutorial.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/Documentation/tutorial.txt b/Documentation/tutorial.txt
index 5fdeab983..039a8598e 100644
--- a/Documentation/tutorial.txt
+++ b/Documentation/tutorial.txt
@@ -435,12 +435,18 @@ adjust gitk's fonts by holding down the control key while pressing
Finally, most commands that take filenames will optionally allow you
to precede any filename by a commit, to specify a particular version
-fo the file:
+of the file:
-------------------------------------
$ git diff v2.5:Makefile HEAD:Makefile.in
-------------------------------------
+You can also use "git cat-file -p" to see any such file:
+
+-------------------------------------
+$ git cat-file -p v2.5:Makefile
+-------------------------------------
+
Next Steps
----------