Autogenerated HTML docs for v1.5.0-rc1-g6f729
authorJunio C Hamano <junio@hera.kernel.org>
Tue, 16 Jan 2007 10:44:47 +0000 (10:44 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Tue, 16 Jan 2007 10:44:47 +0000 (10:44 +0000)
git-reflog.html
git-reflog.txt
git-symbolic-ref.html
git-symbolic-ref.txt

index 3f15425d0ff0f72a098192b07eb3ea1ba7daeedf..b635cedc0b19b8e4be72a68314f5f20e73e0fdb8 100644 (file)
@@ -273,7 +273,7 @@ git-reflog(1) Manual Page
 <h2>SYNOPSIS</h2>\r
 <div class="sectionbody">\r
 <div class="verseblock">\r
-<div class="content"><em>git-reflog</em> expire [--dry-run]\r
+<div class="content"><em>git-reflog</em> expire [--dry-run] [--stale-fix]\r
         [--expire=&lt;time&gt;] [--expire-unreachable=&lt;time&gt;] [--all] &lt;refs&gt;&#8230;</div></div>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
@@ -335,7 +335,7 @@ directly by the end users &#8212; instead, see <a href="git-gc.html">git-gc(1)</
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 27-Dec-2006 10:59:43 UTC\r
+Last updated 16-Jan-2007 10:44:38 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 55a24d32664fd483dcd7d4ee7e56be2c1fee82af..11388658964b2c8acec5a2e9cd070fce6b177bd8 100644 (file)
@@ -9,7 +9,7 @@ git-reflog - Manage reflog information
 SYNOPSIS
 --------
 [verse]
-'git-reflog' expire [--dry-run]
+'git-reflog' expire [--dry-run] [--stale-fix]
        [--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>...
 
 
index ee6e8be9ce647d81537f416c0b5e40a4d1bc96ba..6d871a5000f5815b9e7f7a6a8ba114d3cc0fcc6c 100644 (file)
@@ -272,7 +272,7 @@ git-symbolic-ref(1) Manual Page
 </div>\r
 <h2>SYNOPSIS</h2>\r
 <div class="sectionbody">\r
-<p><em>git-symbolic-ref</em> &lt;name&gt; [&lt;ref&gt;]</p>\r
+<p><em>git-symbolic-ref</em> [-q] &lt;name&gt; [&lt;ref&gt;]</p>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
@@ -286,6 +286,21 @@ point at the given branch &lt;ref&gt;.</p>
 begins with <tt>ref: refs/</tt>.  For example, your <tt>.git/HEAD</tt> is\r
 a regular file whose contents is <tt>ref: refs/heads/master</tt>.</p>\r
 </div>\r
+<h2>OPTIONS</h2>\r
+<div class="sectionbody">\r
+<dl>\r
+<dt>\r
+-q\r
+</dt>\r
+<dd>\r
+<p>\r
+        Do not issue an error message if the &lt;name&gt; is not a\r
+        symbolic ref but a detached HEAD; instead exit with\r
+        non-zero status silently.\r
+</p>\r
+</dd>\r
+</dl>\r
+</div>\r
 <h2>NOTES</h2>\r
 <div class="sectionbody">\r
 <p>In the past, <tt>.git/HEAD</tt> was a symbolic link pointing at\r
@@ -298,6 +313,9 @@ or that do not have the <tt>readlink(1)</tt> command, this was a bit
 cumbersome.  On some platforms, <tt>ln -sf</tt> does not even work as\r
 advertised (horrors).  Therefore symbolic links are now deprecated\r
 and symbolic refs are used by default.</p>\r
+<p>git-symbolic-ref will exit with status 0 if the contents of the\r
+symbolic ref were printed correctly, with status 1 if the requested\r
+name is not a symbolic ref, or 128 if another error occurs.</p>\r
 </div>\r
 <h2>Author</h2>\r
 <div class="sectionbody">\r
@@ -309,7 +327,7 @@ and symbolic refs are used by default.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 03-Dec-2006 01:53:20 UTC\r
+Last updated 16-Jan-2007 10:44:38 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 4bc35a1d4bfce9b92394ba0f3e98ed9943f66e2e..fec3b4f64ae847628e67904876d08533be85c9c7 100644 (file)
@@ -7,7 +7,7 @@ git-symbolic-ref - read and modify symbolic refs
 
 SYNOPSIS
 --------
-'git-symbolic-ref' <name> [<ref>]
+'git-symbolic-ref' [-q] <name> [<ref>]
 
 DESCRIPTION
 -----------
@@ -23,6 +23,14 @@ A symbolic ref is a regular file that stores a string that
 begins with `ref: refs/`.  For example, your `.git/HEAD` is
 a regular file whose contents is `ref: refs/heads/master`.
 
+OPTIONS
+-------
+
+-q::
+       Do not issue an error message if the <name> is not a
+       symbolic ref but a detached HEAD; instead exit with
+       non-zero status silently.
+
 NOTES
 -----
 In the past, `.git/HEAD` was a symbolic link pointing at
@@ -36,6 +44,10 @@ cumbersome.  On some platforms, `ln -sf` does not even work as
 advertised (horrors).  Therefore symbolic links are now deprecated
 and symbolic refs are used by default.
 
+git-symbolic-ref will exit with status 0 if the contents of the
+symbolic ref were printed correctly, with status 1 if the requested
+name is not a symbolic ref, or 128 if another error occurs.
+
 Author
 ------
 Written by Junio C Hamano <junkio@cox.net>