Autogenerated HTML docs for v1.5.2-35-ga334
authorJunio C Hamano <junio@hera.kernel.org>
Tue, 22 May 2007 07:23:37 +0000 (07:23 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Tue, 22 May 2007 07:23:37 +0000 (07:23 +0000)
config.txt
git-config.html
git-describe.html
git-describe.txt
git-name-rev.html
git-name-rev.txt
git-status.html
git-status.txt

index ee1c35e8eb952967980884d521d12a76622f38f4..179cb177d1e3b0a7a969874dde059bf2f9a7266e 100644 (file)
@@ -256,6 +256,11 @@ You probably do not need to adjust this value.
 +
 Common unit suffixes of 'k', 'm', or 'g' are supported.
 
+core.excludeFile::
+       In addition to '.gitignore' (per-directory) and
+       '.git/info/exclude', git looks into this file for patterns
+       of files which are not meant to be tracked.
+
 alias.*::
        Command aliases for the gitlink:git[1] command wrapper - e.g.
        after defining "alias.last = cat-file commit HEAD", the invocation
index 87900120675a21363f9fa293dadb38f60b598d5c..a13d1c4f263c9c68545ee8b01ecd319cd31c2d2d 100644 (file)
@@ -903,6 +903,16 @@ You probably do not need to adjust this value.</p>
 <p>Common unit suffixes of <em>k</em>, <em>m</em>, or <em>g</em> are supported.</p>\r
 </dd>\r
 <dt>\r
+core.excludeFile\r
+</dt>\r
+<dd>\r
+<p>\r
+        In addition to <em>.gitignore</em> (per-directory) and\r
+        <em>.git/info/exclude</em>, git looks into this file for patterns\r
+        of files which are not meant to be tracked.\r
+</p>\r
+</dd>\r
+<dt>\r
 alias.*\r
 </dt>\r
 <dd>\r
@@ -1680,7 +1690,7 @@ transfer.unpackLimit
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 21-May-2007 06:13:41 UTC\r
+Last updated 22-May-2007 07:23:05 UTC\r
 </div>\r
 </div>\r
 </body>\r
index e46d249a0d9c64b53a8cf53c4295fe2bc76ea2fd..d1ff5bda4a5553a94bbe14b28840385bb11b14d6 100644 (file)
@@ -272,7 +272,7 @@ git-describe(1) Manual Page
 </div>\r
 <h2>SYNOPSIS</h2>\r
 <div class="sectionbody">\r
-<p><em>git-describe</em> [--all] [--tags] [--abbrev=&lt;n&gt;] &lt;committish&gt;&#8230;</p>\r
+<p><em>git-describe</em> [--all] [--tags] [--contains] [--abbrev=&lt;n&gt;] &lt;committish&gt;&#8230;</p>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
@@ -311,6 +311,16 @@ additional commits and the abbreviated object name of the commit.</p>
 </p>\r
 </dd>\r
 <dt>\r
+--contains\r
+</dt>\r
+<dd>\r
+<p>\r
+        Instead of finding the tag that predates the commit, find\r
+        the tag that comes after the commit, and thus contains it.\r
+        Automatically implies --tags.\r
+</p>\r
+</dd>\r
+<dt>\r
 --abbrev=&lt;n&gt;\r
 </dt>\r
 <dd>\r
@@ -418,7 +428,7 @@ updated by Shawn Pearce &lt;spearce@spearce.org&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 04-Apr-2007 18:33:37 UTC\r
+Last updated 22-May-2007 07:23:05 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 47a583d3a605d95fb860e6ea7142cebf374ec5aa..dc47b65ced36ac856ad23e2bebd3f3342b50471a 100644 (file)
@@ -8,7 +8,7 @@ git-describe - Show the most recent tag that is reachable from a commit
 
 SYNOPSIS
 --------
-'git-describe' [--all] [--tags] [--abbrev=<n>] <committish>...
+'git-describe' [--all] [--tags] [--contains] [--abbrev=<n>] <committish>...
 
 DESCRIPTION
 -----------
@@ -31,6 +31,11 @@ OPTIONS
        Instead of using only the annotated tags, use any tag
        found in `.git/refs/tags`.
 
+--contains::
+       Instead of finding the tag that predates the commit, find
+       the tag that comes after the commit, and thus contains it.
+       Automatically implies --tags.
+
 --abbrev=<n>::
        Instead of using the default 8 hexadecimal digits as the
        abbreviated object name, use <n> digits.
index 517e2edbe39eb73f0ff4713138f725233c8e25be..80b261b1110ea5515a3a2bae93bcd9f1aa36c5ad 100644 (file)
@@ -317,6 +317,18 @@ format parsable by git-rev-parse.</p>
         commits, and pass to stdout\r
 </p>\r
 </dd>\r
+<dt>\r
+--name-only\r
+</dt>\r
+<dd>\r
+<p>\r
+        Instead of printing both the SHA-1 and the name, print only\r
+        the name.  If given with --tags the usual tag prefix of\r
+        "tags/" is also ommitted from the name, matching the output\r
+        of <a href=":git-describe.html">:git-describe(1)</a> more closely.  This option\r
+        cannot be combined with --stdin.\r
+</p>\r
+</dd>\r
 </dl>\r
 </div>\r
 <h2>EXAMPLE</h2>\r
@@ -352,7 +364,7 @@ not the context.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 19-May-2007 04:51:27 UTC\r
+Last updated 22-May-2007 07:23:07 UTC\r
 </div>\r
 </div>\r
 </body>\r
index d6c8bf800f4456ea63ff7d9b0c01b2d4f0d9d179..9a1645d29272d86a4b66cd96e7312e8380850891 100644 (file)
@@ -34,6 +34,13 @@ OPTIONS
        Read from stdin, append "(<rev_name>)" to all sha1's of nameable
        commits, and pass to stdout
 
+--name-only::
+       Instead of printing both the SHA-1 and the name, print only
+       the name.  If given with --tags the usual tag prefix of
+       "tags/" is also ommitted from the name, matching the output
+       of gitlink::git-describe[1] more closely.  This option
+       cannot be combined with --stdin.
+
 EXAMPLE
 -------
 
index a690a15aa3a6201ccb5a697b20c0c34c0a108123..50dd9cd859ca0a6e48508caca75ef993cda9a457 100644 (file)
@@ -300,6 +300,10 @@ template comments, and all the output lines are prefixed with <em>#</em>.</p>
 mean the same thing and the latter is kept for backward\r
 compatibility) and <tt>color.status.&lt;slot&gt;</tt> configuration variables\r
 to colorize its output.</p>\r
+<p>As for <a href="git-add.html">git-add(1)</a>, the configuration variable\r
+<em>core.excludesfile</em> can indicate a path to a file containing patterns\r
+of file names to exclude, in addition to patterns given in\r
+<em>info/exclude</em> and <em>.gitignore</em>.</p>\r
 </div>\r
 <h2>Author</h2>\r
 <div class="sectionbody">\r
@@ -316,7 +320,7 @@ Junio C Hamano &lt;junkio@cox.net&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 04-Apr-2007 18:34:26 UTC\r
+Last updated 22-May-2007 07:23:07 UTC\r
 </div>\r
 </div>\r
 </body>\r
index e9e193f00866f97b341eebc80ef85e6de9ca3727..d7015387b51d88f6bd6e3918b2bd40c4e9529f15 100644 (file)
@@ -42,6 +42,11 @@ mean the same thing and the latter is kept for backward
 compatibility) and `color.status.<slot>` configuration variables
 to colorize its output.
 
+As for gitlink:git-add[1], the configuration variable
+'core.excludesfile' can indicate a path to a file containing patterns
+of file names to exclude, in addition to patterns given in
+'info/exclude' and '.gitignore'.
+
 
 Author
 ------