Autogenerated HTML docs for 5a2282de13c4da13f979185e652c8a08e2481fd1
authorJunio C Hamano <junio@hera.kernel.org>
Mon, 9 Jan 2006 00:53:28 +0000 (16:53 -0800)
committerJunio C Hamano <junio@hera.kernel.org>
Mon, 9 Jan 2006 00:53:28 +0000 (16:53 -0800)
fetch-options.txt
git-daemon.html
git-daemon.txt
git-fetch.html
git-pull.html

index 200c9b240dc3f89cd29350332447e48b53bcfdc1..1fe8423b94739e16f2ad8ec4b07ed45a2e6b964a 100644 (file)
        fetches is a descendant of `<lbranch>`.  This option
        overrides that check.
 
+\--no-tags::
+       By default, `git-fetch` fetches tags that point at
+       objects that are downloaded from the remote repository
+       and stores them locally.  This option disables this
+       automatic tag following.
+
 -t, \--tags::
-       By default, the git core utilities will not fetch and store
-       tags under the same name as the remote repository;  ask it
-       to do so using `--tags`.  Using this option will bound the
-       list of objects pulled to the remote tags.  Commits in branches
-       beyond the tags will be ignored.
+       Most of the tags are fetched automatically as branch
+       heads are downloaded, but tags that do not point at
+       objects reachable from the branch heads that are being
+       tracked will not be fetched by this mechanism.  This
+       flag lets all tags and their associated objects be
+       downloaded.
 
 -u, \--update-head-ok::
        By default `git-fetch` refuses to update the head which
        corresponds to the current branch.  This flag disables the
        check.  Note that fetching into the current branch will not
        update the index and working directory, so use it with care.
+
index 8899db0b48a1e6637a78d9c967b9289520ed0793..99d667c6f8272e13100b9e50ac4d4aa9adbdba61 100644 (file)
@@ -274,7 +274,8 @@ git-daemon(1) Manual Page
 <div class="sectionbody">\r
 <div class="verseblock">\r
 <div class="content"><em>git-daemon</em> [--verbose] [--syslog] [--inetd | --port=n] [--export-all]\r
-           [--timeout=n] [--init-timeout=n] [--strict-paths] [directory&#8230;]</div></div>\r
+             [--timeout=n] [--init-timeout=n] [--strict-paths]\r
+             [--base-path=path] [directory&#8230;]</div></div>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
@@ -305,6 +306,19 @@ the offers to a whitelist comprising of those.</p>
 </p>\r
 </dd>\r
 <dt>\r
+--base-path\r
+</dt>\r
+<dd>\r
+<p>\r
+        Remap all the path requests as relative to the given path.\r
+        This is sort of "GIT root" - if you run git-daemon with\r
+        <em>--base-path=/srv/git</em> on example.com, then if you later try to pull\r
+        <em>git://example.com/hello.git</em>, <tt>git-daemon</tt> will interpret the path\r
+        as <em>/srv/git/hello.git</em>. Home directories (the <em>~login</em> notation)\r
+        access is disabled.\r
+</p>\r
+</dd>\r
+<dt>\r
 --export-all\r
 </dt>\r
 <dd>\r
@@ -394,7 +408,7 @@ the offers to a whitelist comprising of those.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 06-Jan-2006 17:12:17 PDT\r
+Last updated 08-Jan-2006 16:53:07 PDT\r
 </div>\r
 </div>\r
 </body>\r
index 33f3320e287bc7eddd1a353b4468338b8f85e356..a20e0533fcfc1ed2c9940021ab65ef2967f16856 100644 (file)
@@ -9,7 +9,8 @@ SYNOPSIS
 --------
 [verse]
 'git-daemon' [--verbose] [--syslog] [--inetd | --port=n] [--export-all]
-           [--timeout=n] [--init-timeout=n] [--strict-paths] [directory...]
+             [--timeout=n] [--init-timeout=n] [--strict-paths]
+             [--base-path=path] [directory...]
 
 DESCRIPTION
 -----------
@@ -36,6 +37,14 @@ OPTIONS
        git-daemon will refuse to start when this option is enabled and no
        whitelist is specified.
 
+--base-path::
+       Remap all the path requests as relative to the given path.
+       This is sort of "GIT root" - if you run git-daemon with
+       '--base-path=/srv/git' on example.com, then if you later try to pull
+       'git://example.com/hello.git', `git-daemon` will interpret the path
+       as '/srv/git/hello.git'. Home directories (the '~login' notation)
+       access is disabled.
+
 --export-all::
        Allow pulling from all directories that look like GIT repositories
        (have the 'objects' and 'refs' subdirectories), even if they
index 9d38bb1e364ed5640377b5f565b366b9ef3be06a..bd0714481473edc094ee5e17f7a2f4e5cbd1eaea 100644 (file)
@@ -308,15 +308,27 @@ operation done by "git merge".</p>
 </p>\r
 </dd>\r
 <dt>\r
+--no-tags\r
+</dt>\r
+<dd>\r
+<p>\r
+        By default, <tt>git-fetch</tt> fetches tags that point at\r
+        objects that are downloaded from the remote repository\r
+        and stores them locally.  This option disables this\r
+        automatic tag following.\r
+</p>\r
+</dd>\r
+<dt>\r
 -t, --tags\r
 </dt>\r
 <dd>\r
 <p>\r
-        By default, the git core utilities will not fetch and store\r
-        tags under the same name as the remote repository;  ask it\r
-        to do so using <tt>--tags</tt>.  Using this option will bound the\r
-        list of objects pulled to the remote tags.  Commits in branches\r
-        beyond the tags will be ignored.\r
+        Most of the tags are fetched automatically as branch\r
+        heads are downloaded, but tags that do not point at\r
+        objects reachable from the branch heads that are being\r
+        tracked will not be fetched by this mechanism.  This\r
+        flag lets all tags and their associated objects be\r
+        downloaded.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -579,7 +591,7 @@ Junio C Hamano &lt;junkio@cox.net&gt;</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 27-Dec-2005 00:16:06 PDT\r
+Last updated 08-Jan-2006 16:53:08 PDT\r
 </div>\r
 </div>\r
 </body>\r
index 00b74ee222203ff85dccdd9d33aaf1533917e747..0f1ba043666c2d8118d2c91e265c2806e7dfda05 100644 (file)
@@ -338,15 +338,27 @@ when merging local branches into the current branch.</p>
 </p>\r
 </dd>\r
 <dt>\r
+--no-tags\r
+</dt>\r
+<dd>\r
+<p>\r
+        By default, <tt>git-fetch</tt> fetches tags that point at\r
+        objects that are downloaded from the remote repository\r
+        and stores them locally.  This option disables this\r
+        automatic tag following.\r
+</p>\r
+</dd>\r
+<dt>\r
 -t, --tags\r
 </dt>\r
 <dd>\r
 <p>\r
-        By default, the git core utilities will not fetch and store\r
-        tags under the same name as the remote repository;  ask it\r
-        to do so using <tt>--tags</tt>.  Using this option will bound the\r
-        list of objects pulled to the remote tags.  Commits in branches\r
-        beyond the tags will be ignored.\r
+        Most of the tags are fetched automatically as branch\r
+        heads are downloaded, but tags that do not point at\r
+        objects reachable from the branch heads that are being\r
+        tracked will not be fetched by this mechanism.  This\r
+        flag lets all tags and their associated objects be\r
+        downloaded.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -767,7 +779,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 27-Dec-2005 00:16:29 PDT\r
+Last updated 08-Jan-2006 16:53:09 PDT\r
 </div>\r
 </div>\r
 </body>\r