Autogenerated HTML docs for v1.1.4-g9264
authorJunio C Hamano <junio@hera.kernel.org>
Wed, 25 Jan 2006 12:37:28 +0000 (04:37 -0800)
committerJunio C Hamano <junio@hera.kernel.org>
Wed, 25 Jan 2006 12:37:28 +0000 (04:37 -0800)
fetch-options.txt
git-clone.html
git-clone.txt
git-fetch.html
git-pull.html
git.html
git.txt
repository-layout.html
repository-layout.txt

index e624d3d..8323756 100644 (file)
@@ -3,6 +3,13 @@
        existing contents of `.git/FETCH_HEAD`.  Without this
        option old data in `.git/FETCH_HEAD` will be overwritten.
 
+--upload-pack <upload-pack>::
+-u <upload-pack>::
+        When given, and the repository to fetch from is handled
+        by 'git-fetch-pack', '--exec=<upload-pack>' is passed to
+        the command to specify non-default path for the command
+        run on the other end.
+
 -f, \--force::
        When `git-fetch` is used with `<rbranch>:<lbranch>`
        refspec, it refuses to update the local branch
index eade541..6ade3cb 100644 (file)
@@ -273,7 +273,7 @@ git-clone(1) Manual Page
 <h2>SYNOPSIS</h2>\r
 <div class="sectionbody">\r
 <div class="verseblock">\r
-<div class="content"><em>git-clone</em> [-l [-s]] [-q] [-n] [--naked] [-o &lt;name&gt;] [-u &lt;upload-pack&gt;]\r
+<div class="content"><em>git-clone</em> [-l [-s]] [-q] [-n] [--bare] [-o &lt;name&gt;] [-u &lt;upload-pack&gt;]\r
           &lt;repository&gt; [&lt;directory&gt;]</div></div>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
@@ -349,14 +349,16 @@ branch you are currently working on.  Remote branches other than
 </p>\r
 </dd>\r
 <dt>\r
---naked\r
+--bare\r
 </dt>\r
 <dd>\r
 <p>\r
-        Make a <em>naked</em> GIT repository.  That is, instead of\r
+        Make a <em>bare</em> GIT repository.  That is, instead of\r
         creating <tt>&lt;directory&gt;</tt> and placing the administrative\r
         files in <tt>&lt;directory&gt;/.git</tt>, make the <tt>&lt;directory&gt;</tt>\r
-        itself the <tt>$GIT_DIR</tt>. This implies <tt>-n</tt> option.\r
+        itself the <tt>$GIT_DIR</tt>. This implies <tt>-n</tt> option.  When\r
+        this option is used, neither the <tt>origin</tt> branch nor the\r
+        default <tt>remotes/origin</tt> file is created.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -432,12 +434,12 @@ $ git show-branch</tt></pre>
 </div></div>\r
 </dd>\r
 <dt>\r
-Create a naked repository to publish your changes to the public\r
+Create a bare repository to publish your changes to the public\r
 </dt>\r
 <dd>\r
 <div class="listingblock">\r
 <div class="content">\r
-<pre><tt>$ git clone --naked -l /home/proj/.git /pub/scm/proj.git</tt></pre>\r
+<pre><tt>$ git clone --bare -l /home/proj/.git /pub/scm/proj.git</tt></pre>\r
 </div></div>\r
 </dd>\r
 <dt>\r
@@ -446,7 +448,7 @@ Create a repository on the kernel.org machine that borrows from Linus
 <dd>\r
 <div class="listingblock">\r
 <div class="content">\r
-<pre><tt>$ git clone --naked -l -s /pub/scm/.../torvalds/linux-2.6.git \\r
+<pre><tt>$ git clone --bare -l -s /pub/scm/.../torvalds/linux-2.6.git \\r
     /pub/scm/.../me/subsys-2.6.git</tt></pre>\r
 </div></div>\r
 </dd>\r
@@ -466,7 +468,7 @@ Create a repository on the kernel.org machine that borrows from Linus
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 15-Jan-2006 02:13:28 PDT\r
+Last updated 25-Jan-2006 04:37:11 PDT\r
 </div>\r
 </div>\r
 </body>\r
index 8488202..684e4bd 100644 (file)
@@ -9,7 +9,7 @@ git-clone - Clones a repository.
 SYNOPSIS
 --------
 [verse]
-'git-clone' [-l [-s]] [-q] [-n] [--naked] [-o <name>] [-u <upload-pack>]
+'git-clone' [-l [-s]] [-q] [-n] [--bare] [-o <name>] [-u <upload-pack>]
          <repository> [<directory>]
 
 DESCRIPTION
@@ -58,11 +58,13 @@ OPTIONS
 -n::
        No checkout of HEAD is performed after the clone is complete.
 
---naked::
-       Make a 'naked' GIT repository.  That is, instead of
+--bare::
+       Make a 'bare' GIT repository.  That is, instead of
        creating `<directory>` and placing the administrative
        files in `<directory>/.git`, make the `<directory>`
-       itself the `$GIT_DIR`. This implies `-n` option.
+       itself the `$GIT_DIR`. This implies `-n` option.  When
+       this option is used, neither the `origin` branch nor the
+       default `remotes/origin` file is created.
 
 -o <name>::
        Instead of using the branch name 'origin' to keep track
@@ -110,17 +112,17 @@ $ git show-branch
 ------------
 
 
-Create a naked repository to publish your changes to the public::
+Create a bare repository to publish your changes to the public::
 +
 ------------
-$ git clone --naked -l /home/proj/.git /pub/scm/proj.git
+$ git clone --bare -l /home/proj/.git /pub/scm/proj.git
 ------------
 
 
 Create a repository on the kernel.org machine that borrows from Linus::
 +
 ------------
-$ git clone --naked -l -s /pub/scm/.../torvalds/linux-2.6.git \
+$ git clone --bare -l -s /pub/scm/.../torvalds/linux-2.6.git \
     /pub/scm/.../me/subsys-2.6.git
 ------------
 
index da606d4..8a11e78 100644 (file)
@@ -296,6 +296,20 @@ operation done by "git merge".</p>
 </p>\r
 </dd>\r
 <dt>\r
+--upload-pack &lt;upload-pack&gt;\r
+</dt>\r
+<dt>\r
+-u &lt;upload-pack&gt;\r
+</dt>\r
+<dd>\r
+<p>\r
+        When given, and the repository to fetch from is handled\r
+        by <em>git-fetch-pack</em>, <em>--exec=&lt;upload-pack&gt;</em> is passed to\r
+        the command to specify non-default path for the command\r
+        run on the other end.\r
+</p>\r
+</dd>\r
+<dt>\r
 -f, --force\r
 </dt>\r
 <dd>\r
@@ -599,7 +613,7 @@ Junio C Hamano &lt;junkio@cox.net&gt;</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 13-Jan-2006 19:58:27 PDT\r
+Last updated 25-Jan-2006 04:37:11 PDT\r
 </div>\r
 </div>\r
 </body>\r
index 3e384ca..d4dcc30 100644 (file)
@@ -326,6 +326,20 @@ when merging local branches into the current branch.</p>
 </p>\r
 </dd>\r
 <dt>\r
+--upload-pack &lt;upload-pack&gt;\r
+</dt>\r
+<dt>\r
+-u &lt;upload-pack&gt;\r
+</dt>\r
+<dd>\r
+<p>\r
+        When given, and the repository to fetch from is handled\r
+        by <em>git-fetch-pack</em>, <em>--exec=&lt;upload-pack&gt;</em> is passed to\r
+        the command to specify non-default path for the command\r
+        run on the other end.\r
+</p>\r
+</dd>\r
+<dt>\r
 -f, --force\r
 </dt>\r
 <dd>\r
@@ -787,7 +801,7 @@ Junio C Hamano and the git-list &lt;git@vger.kernel.org&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 13-Jan-2006 19:58:28 PDT\r
+Last updated 25-Jan-2006 04:37:12 PDT\r
 </div>\r
 </div>\r
 </body>\r
index b879259..32f40a4 100644 (file)
--- a/git.html
+++ b/git.html
@@ -2023,7 +2023,7 @@ contributors on the git-list &lt;git@vger.kernel.org&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 22-Jan-2006 23:54:19 PDT\r
+Last updated 25-Jan-2006 04:37:14 PDT\r
 </div>\r
 </div>\r
 </body>\r
diff --git a/git.txt b/git.txt
index 25bcb84..e8ef3ef 100644 (file)
--- a/git.txt
+++ b/git.txt
@@ -586,7 +586,7 @@ git Diffs
 
 Discussion[[Discussion]]
 ------------------------
-include::../README[]
+include::README[]
 
 Authors
 -------
index a49b831..3ef3215 100644 (file)
@@ -265,7 +265,7 @@ div.exampleblock-content {
 <div class="sectionbody">\r
 <p>You may find these things in your git repository (<tt>.git</tt>\r
 directory for a repository associated with your working tree, or\r
-<tt><em>project</em>.git</tt> directory for a public <em>naked</em> repository).</p>\r
+<tt><em>project</em>.git</tt> directory for a public <em>bare</em> repository).</p>\r
 <dl>\r
 <dt>\r
 objects\r
@@ -393,7 +393,7 @@ HEAD
         A symlink of the form <tt>refs/heads/<em>name</em></tt> to point at\r
         the current branch, if exists.  It does not mean much if\r
         the repository is not associated with any working tree\r
-        (i.e. <em>naked</em> repository), but a valid git repository\r
+        (i.e. a <em>bare</em> repository), but a valid git repository\r
         <strong>must</strong> have such a symlink here.  It is legal if the\r
         named branch <em>name</em> does not (yet) exist.\r
 </p>\r
@@ -427,7 +427,7 @@ index
 <dd>\r
 <p>\r
         The current index file for the repository.  It is\r
-        usually not found in a naked repository.\r
+        usually not found in a bare repository.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -493,7 +493,7 @@ remotes
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 06-Jan-2006 17:12:59 PDT\r
+Last updated 25-Jan-2006 04:37:17 PDT\r
 </div>\r
 </div>\r
 </body>\r
index 0347cab..1f19bf8 100644 (file)
@@ -3,7 +3,7 @@ git repository layout
 
 You may find these things in your git repository (`.git`
 directory for a repository associated with your working tree, or
-`'project'.git` directory for a public 'naked' repository).
+`'project'.git` directory for a public 'bare' repository).
 
 objects::
        Object store associated with this repository.  Usually
@@ -73,7 +73,7 @@ HEAD::
        A symlink of the form `refs/heads/'name'` to point at
        the current branch, if exists.  It does not mean much if
        the repository is not associated with any working tree
-       (i.e. 'naked' repository), but a valid git repository
+       (i.e. a 'bare' repository), but a valid git repository
        *must* have such a symlink here.  It is legal if the
        named branch 'name' does not (yet) exist.
 
@@ -92,7 +92,7 @@ hooks::
 
 index::
        The current index file for the repository.  It is
-       usually not found in a naked repository.
+       usually not found in a bare repository.
 
 info::
        Additional information about the repository is recorded