Show the working tree status.
gitlink:git-tag[1]::
- Create or verify a tag object signed with GPG.
+ Create, list, delete or verify a tag object signed with GPG.
</div>\r
<h2>SYNOPSIS</h2>\r
<div class="sectionbody">\r
-<p><em>git-prune</em> [-n] [--] [<head>…]</p>\r
+<p><em>git-prune</em> [-n] [--grace=<time>]</p>\r
</div>\r
<h2>DESCRIPTION</h2>\r
<div class="sectionbody">\r
</p>\r
</dd>\r
<dt>\r
---\r
+--grace=<time>\r
</dt>\r
<dd>\r
<p>\r
- Do not interpret any more arguments as options.\r
-</p>\r
-</dd>\r
-<dt>\r
-<head>…\r
-</dt>\r
-<dd>\r
-<p>\r
- In addition to objects\r
- reachable from any of our references, keep objects\r
- reachable from listed <head>s.\r
+ Do not prune loose objects that are younger than the\r
+ specified time. This gives a grace period to newly\r
+ created objects from getting pruned.\r
</p>\r
</dd>\r
</dl>\r
</div>\r
-<h2>EXAMPLE</h2>\r
-<div class="sectionbody">\r
-<p>To prune objects not used by your repository nor another that\r
-borrows from your repository via its\r
-<tt>.git/objects/info/alternates</tt>:</p>\r
-<div class="listingblock">\r
-<div class="content">\r
-<pre><tt>$ git prune $(cd ../another && $(git-rev-parse --all))</tt></pre>\r
-</div></div>\r
-</div>\r
<h2>Author</h2>\r
<div class="sectionbody">\r
<p>Written by Linus Torvalds <torvalds@osdl.org></p>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 03-Oct-2006 08:41:18 UTC\r
+Last updated 21-Jan-2007 08:57:03 UTC\r
</div>\r
</div>\r
</body>\r
SYNOPSIS
--------
-'git-prune' [-n] [--] [<head>...]
+'git-prune' [-n] [--grace=<time>]
DESCRIPTION
-----------
Do not remove anything; just report what it would
remove.
+--grace=<time>::
+ Do not prune loose objects that are younger than the
+ specified time. This gives a grace period to newly
+ created objects from getting pruned.
+
+////////////////////////////////////////////
\--::
Do not interpret any more arguments as options.
------------
$ git prune $(cd ../another && $(git-rev-parse --all))
------------
+////////////////////////////////////////////
Author
------
[ --pretty | --header ]\r
[ --bisect ]\r
[ --merge ]\r
+ [ --walk-reflogs ]\r
<commit>… [ -- <paths>… ]</div></div>\r
</div>\r
<h2>DESCRIPTION</h2>\r
</p>\r
</dd>\r
<dt>\r
+--walk-reflogs\r
+</dt>\r
+<dd>\r
+<p>\r
+ Instead of walking the commit ancestry chain, walk\r
+ reflog entries from the most recent one to older ones.\r
+ When this option is used you cannot specify commits to\r
+ exclude (that is, <em>^commit</em>, <em>commit1..commit2</em>,\r
+ nor <em>commit1…commit2</em> notations cannot be used).<br />\r
+With <em>--pretty</em> format other than oneline (for obvious reasons),\r
+this causes the output to have two extra lines of information\r
+used in the output. When the starting commit is specified as\r
+instead. Under <em>--pretty=oneline</em>, the commit message is\r
+prefixed with this information on the same line.\r
+</p>\r
+</dd>\r
+<dt>\r
--merge\r
</dt>\r
<dd>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 31-Dec-2006 01:19:04 UTC\r
+Last updated 21-Jan-2007 08:57:03 UTC\r
</div>\r
</div>\r
</body>\r
[ \--pretty | \--header ]
[ \--bisect ]
[ \--merge ]
+ [ \--walk-reflogs ]
<commit>... [ \-- <paths>... ]
DESCRIPTION
In addition to the '<commit>' listed on the command
line, read them from the standard input.
+--walk-reflogs::
+
+ Instead of walking the commit ancestry chain, walk
+ reflog entries from the most recent one to older ones.
+ When this option is used you cannot specify commits to
+ exclude (that is, '{caret}commit', 'commit1..commit2',
+ nor 'commit1...commit2' notations cannot be used).
++
+With '\--pretty' format other than oneline (for obvious reasons),
+this causes the output to have two extra lines of information
+taken from the reflog. By default, 'commit@{Nth}' notation is
+used in the output. When the starting commit is specified as
+'commit@{now}', output also uses 'commit@{timestamp}' notation
+instead. Under '\--pretty=oneline', the commit message is
+prefixed with this information on the same line.
+
--merge::
After a failed merge, show refs that touch files having a
<div class="content"><em>git-show-branch</em> [--all] [--remotes] [--topo-order] [--current]\r
[--more=<n> | --list | --independent | --merge-base]\r
[--no-name | --sha1-name] [--topics] [<rev> | <glob>]…\r
-<em>git-show-branch</em> --reflog[=<n>] <ref></div></div>\r
+<em>git-show-branch</em> --reflog[=<n>[,<base>]] [--list] <ref></div></div>\r
</div>\r
<h2>DESCRIPTION</h2>\r
<div class="sectionbody">\r
</p>\r
</dd>\r
<dt>\r
---reflog[=<n>] <ref>\r
+--reflog[=<n>[,<base>]] <ref>\r
</dt>\r
<dd>\r
<p>\r
- Shows <n> most recent ref-log entries for the given ref.\r
+ Shows <n> most recent ref-log entries for the given\r
+ ref. If <base> is given, <n> entries going back from\r
+ that entry. <base> can be specified as count or date\r
</p>\r
</dd>\r
</dl>\r
<p>With this, <tt>git show-branch</tt> without extra parameters would show\r
only the primary branches. In addition, if you happen to be on\r
your topic branch, it is shown as well.</p>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ git show-branch --reflog='10,1 hour ago' --list master</tt></pre>\r
+</div></div>\r
+<p>shows 10 reflog entries going back from the tip as of 1 hour ago.\r
+Without <tt>--list</tt>, the output also shows how these tips are\r
+topologically related with each other.</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 26-Dec-2006 09:11:36 UTC\r
+Last updated 21-Jan-2007 08:57:04 UTC\r
</div>\r
</div>\r
</body>\r
'git-show-branch' [--all] [--remotes] [--topo-order] [--current]
[--more=<n> | --list | --independent | --merge-base]
[--no-name | --sha1-name] [--topics] [<rev> | <glob>]...
-'git-show-branch' --reflog[=<n>] <ref>
+'git-show-branch' --reflog[=<n>[,<base>]] [--list] <ref>
DESCRIPTION
-----------
will show the revisions given by "git rev-list {caret}master
topic1 topic2"
---reflog[=<n>] <ref>::
- Shows <n> most recent ref-log entries for the given ref.
+--reflog[=<n>[,<base>]] <ref>::
+ Shows <n> most recent ref-log entries for the given
+ ref. If <base> is given, <n> entries going back from
+ that entry. <base> can be specified as count or date
Note that --more, --list, --independent and --merge-base options
only the primary branches. In addition, if you happen to be on
your topic branch, it is shown as well.
+------------
+$ git show-branch --reflog='10,1 hour ago' --list master
+------------
+
+shows 10 reflog entries going back from the tip as of 1 hour ago.
+Without `--list`, the output also shows how these tips are
+topologically related with each other.
Author
<h2>NAME</h2>\r
<div class="sectionbody">\r
<p>git-tag -\r
- Create or verify a tag object signed with GPG\r
+ Create, list, delete or verify a tag object signed with GPG\r
</p>\r
</div>\r
</div>\r
<h2>SYNOPSIS</h2>\r
<div class="sectionbody">\r
<div class="verseblock">\r
-<div class="content"><em>git-tag</em> [-a | -s | -u <key-id>] [-f | -d | -v] [-m <msg> | -F <file>]\r
- <name> [<head>]\r
+<div class="content"><em>git-tag</em> [-a | -s | -u <key-id>] [-f | -v] [-m <msg> | -F <file>] <name> [<head>]\r
+<em>git-tag</em> -d <name>…\r
<em>git-tag</em> -l [<pattern>]</div></div>\r
</div>\r
<h2>DESCRIPTION</h2>\r
</dt>\r
<dd>\r
<p>\r
- Delete an existing tag with the given name\r
+ Delete existing tags with the given names.\r
</p>\r
</dd>\r
<dt>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 17-Jan-2007 17:42:18 UTC\r
+Last updated 21-Jan-2007 08:57:04 UTC\r
</div>\r
</div>\r
</body>\r
NAME
----
-git-tag - Create or verify a tag object signed with GPG
+git-tag - Create, list, delete or verify a tag object signed with GPG
SYNOPSIS
--------
[verse]
-'git-tag' [-a | -s | -u <key-id>] [-f | -d | -v] [-m <msg> | -F <file>]
- <name> [<head>]
+'git-tag' [-a | -s | -u <key-id>] [-f | -v] [-m <msg> | -F <file>] <name> [<head>]
+'git-tag' -d <name>...
'git-tag' -l [<pattern>]
DESCRIPTION
Replace an existing tag with the given name (instead of failing)
-d::
- Delete an existing tag with the given name
+ Delete existing tags with the given names.
-v::
Verify the gpg signature of given the tag
</dt>\r
<dd>\r
<p>\r
- Create or verify a tag object signed with GPG.\r
+ Create, list, delete or verify a tag object signed with GPG.\r
</p>\r
</dd>\r
</dl>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 20-Jan-2007 02:22:41 UTC\r
+Last updated 21-Jan-2007 08:57:05 UTC\r
</div>\r
</div>\r
</body>\r