From: Junio C Hamano
Date: Fri, 11 Apr 2008 05:28:52 +0000 (+0000)
Subject: Autogenerated HTML docs for v1.5.5-29-g7134
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=dcc6495c1f9fcf63dde4f602c75ded45145a7237;p=git.git
Autogenerated HTML docs for v1.5.5-29-g7134
---
diff --git a/core-tutorial.html b/core-tutorial.html
index d993722de..75db35a31 100644
--- a/core-tutorial.html
+++ b/core-tutorial.html
@@ -777,7 +777,7 @@ with the associated patches use the more complex (and much more
powerful)
-
$ git-whatchanged -p --root
+
$ git-whatchanged -p
and you will see exactly what has changed in the repository over its
short history.
@@ -786,11 +786,11 @@ short history.
Note
|
-The --root flag is a flag to git-diff-tree to tell it to
-show the initial aka root commit too. Normally you'd probably not
-want to see the initial import diff, but since the tutorial project
-was started from scratch and is so small, we use it to make the result
-a bit more interesting. |
+When using the above two commands, the initial commit will be shown.
+If this is a problem because it is huge, you can hide it by setting
+the log.showroot configuration variable to false. Having this, you
+can still show it for each command just adding the --root option,
+which is a flag for git-diff-tree accepted by both commands. |
With that, you should now be having some inkling of what git does, and
@@ -1967,7 +1967,7 @@ to follow, not easier.