<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=<time>] [--expire-unreachable=<time>] [--all] <refs>…</div></div>\r
</div>\r
<h2>DESCRIPTION</h2>\r
</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
SYNOPSIS
--------
[verse]
-'git-reflog' expire [--dry-run]
+'git-reflog' expire [--dry-run] [--stale-fix]
[--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>...
</div>\r
<h2>SYNOPSIS</h2>\r
<div class="sectionbody">\r
-<p><em>git-symbolic-ref</em> <name> [<ref>]</p>\r
+<p><em>git-symbolic-ref</em> [-q] <name> [<ref>]</p>\r
</div>\r
<h2>DESCRIPTION</h2>\r
<div class="sectionbody">\r
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 <name> 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
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
</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
SYNOPSIS
--------
-'git-symbolic-ref' <name> [<ref>]
+'git-symbolic-ref' [-q] <name> [<ref>]
DESCRIPTION
-----------
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
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>