Skip to content

Commit

Permalink
Don't use dash commands (git-foo) in tutorial-2
Browse files Browse the repository at this point in the history
Signed-off-by: Ted Percival <ted@midg3t.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Ted Percival authored and Junio C Hamano committed Jun 27, 2008
1 parent 4c7ba95 commit d54467b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Documentation/gittutorial-2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ from your own version. Note that you can shorten it to only a few
characters to save yourself typing all 40 hex digits:

------------------------------------------------
$ git-cat-file -t 54196cc2
$ git cat-file -t 54196cc2
commit
$ git-cat-file commit 54196cc2
$ git cat-file commit 54196cc2
tree 92b8b694ffb1675e5975148e1121810081dbdffe
author J. Bruce Fields <bfields@puzzle.fieldses.org> 1143414668 -0500
committer J. Bruce Fields <bfields@puzzle.fieldses.org> 1143414668 -0500
Expand Down Expand Up @@ -166,7 +166,7 @@ hello world!
and the "parent" object refers to the previous commit:

------------------------------------------------
$ git-cat-file commit 54196cc2
$ git cat-file commit 54196cc2
tree 92b8b694ffb1675e5975148e1121810081dbdffe
author J. Bruce Fields <bfields@puzzle.fieldses.org> 1143414668 -0500
committer J. Bruce Fields <bfields@puzzle.fieldses.org> 1143414668 -0500
Expand Down Expand Up @@ -246,7 +246,7 @@ The last diff is empty, but no new commits have been made, and the
head still doesn't contain the new line:

------------------------------------------------
$ git-diff HEAD
$ git diff HEAD
diff --git a/file.txt b/file.txt
index a042389..513feba 100644
--- a/file.txt
Expand All @@ -273,7 +273,7 @@ hello world, again

So what our "git add" did was store a new blob and then put
a reference to it in the index file. If we modify the file again,
we'll see that the new modifications are reflected in the "git-diff"
we'll see that the new modifications are reflected in the "git diff"
output:

------------------------------------------------
Expand Down

0 comments on commit d54467b

Please sign in to comment.