[PATCH] Update documentation for git-get-tar-commit-id
[git.git] / Documentation / git.txt
index befe3e5..b10edff 100644 (file)
@@ -19,11 +19,14 @@ This is reference information for the core git commands.
 Before reading this cover to cover, you may want to take a look
 at the link:tutorial.html[tutorial] document.
 
-The Discussion section below contains much useful definition and
+The <<Discussion>> section below contains much useful definition and
 clarification info - read that first.  And of the commands, I suggest
 reading link:git-update-cache.html[git-update-cache] and
 link:git-read-tree.html[git-read-tree] first - I wish I had!
 
+If you are migrating from CVS, link:cvs-migration.html[cvs migration]
+document may be helpful after you finish the tutorial.
+
 After you get the general feel from the tutorial and this
 overview page, you may want to take a look at the
 link:howto-index.html[howto] documents.
@@ -316,6 +319,8 @@ link:git-patch-id.html[git-patch-id]::
 link:git-send-email-script.html[git-send-email]::
        Send patch e-mails out of "format-patch --mbox" output.
 
+link:git-get-tar-commit-id.html[git-get-tar-commit-id]::
+       Extract commit ID from an archive created using git-tar-tree.
 
 Commands not yet documented
 ---------------------------
@@ -326,9 +331,6 @@ link:git-build-rev-cache.html[git-build-rev-cache]::
 link:git-checkout-script.html[git-checkout-script]::
        git-checkout-script.
 
-link:git-clone-dumb-http.html[git-clone-dumb-http]::
-       git-clone-dumb-http.
-
 link:git-daemon.html[git-daemon]::
        git-daemon.
 
@@ -338,9 +340,6 @@ link:git-diff-script.html[git-diff-script]::
 link:git-format-patch-script.html[git-format-patch-script]::
        git-format-patch-script.
 
-link:git-get-tar-commit-id.html[git-get-tar-commit-id]::
-       git-get-tar-commit-id.
-
 link:git-request-pull-script.html[git-request-pull-script]::
        git-request-pull-script.
 
@@ -409,24 +408,13 @@ HEAD::
 
 File/Directory Structure
 ------------------------
-The git-core manipulates the following areas in the directory:
-
- .git/        The base (overridden with $GIT_DIR)
-   objects/    The object base (overridden with $GIT_OBJECT_DIRECTORY)
-     ??/       'First 2 chars of object' directories.
-     pack/     Packed archives.
 
-   refs/       Directories containing symbolic names for objects
-              (each file contains the hex SHA1 + newline)
-     heads/    Commits which are heads of various sorts
-     tags/     Tags, by the tag name (or some local renaming of it)
-     */        Any other subdirectory of refs/ can be used to store
-              files similar to what are under refs/heads/.
-   HEAD        Symlink to refs/heads/<current-branch-name>
+Please see link:repository-layout.html[repository layout] document.
 
 Higher level SCMs may provide and manage additional information in the
 GIT_DIR.
 
+
 Terminology
 -----------
 Please see link:glossary.html[glossary] document.
@@ -483,8 +471,8 @@ git Diffs
        link:git-diff-files.html[git-diff-files];
        link:git-diff-tree.html[git-diff-tree]
 
-Discussion
-----------
+Discussion[[Discussion]]
+------------------------
 include::../README[]
 
 Author