Autogenerated HTML docs for v1.5.1-108-gf8ce1
authorJunio C Hamano <junio@hera.kernel.org>
Tue, 10 Apr 2007 21:31:32 +0000 (21:31 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Tue, 10 Apr 2007 21:31:32 +0000 (21:31 +0000)
git-archive.html
git-archive.txt
git-show-ref.html
git-show-ref.txt

index 77d03dd80326d403a0b0ad9097b849712583f6b9..39cd9adceef8864ca9ef1fb6e18e215ba2fbc9c2 100644 (file)
@@ -297,7 +297,8 @@ comment.</p>
 </dt>\r
 <dd>\r
 <p>\r
-        Format of the resulting archive: <em>tar</em>, <em>zip</em>&#8230;\r
+        Format of the resulting archive: <em>tar</em>, <em>zip</em>&#8230;  The default\r
+        is <em>tar</em>.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -444,7 +445,7 @@ git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ &gt; git-1.4.0-d
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 04-Apr-2007 18:33:25 UTC\r
+Last updated 10-Apr-2007 21:31:10 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 493474b2eeabb2f7928b0e9f91cfd1ff64763a6d..8d1041598e566a3ffc87cbe294c7800be1ab0c60 100644 (file)
@@ -30,7 +30,8 @@ OPTIONS
 -------
 
 --format=<fmt>::
-       Format of the resulting archive: 'tar', 'zip'...
+       Format of the resulting archive: 'tar', 'zip'...  The default
+       is 'tar'.
 
 --list::
        Show all available formats.
index b761cb3917deebdf7c193c919e21e46f89053285..45c2cc3eea434cb5e07bba601f8bb2b45d127678 100644 (file)
@@ -274,7 +274,8 @@ git-show-ref(1) Manual Page
 <div class="sectionbody">\r
 <div class="verseblock">\r
 <div class="content"><em>git-show-ref</em> [-q|--quiet] [--verify] [-h|--head] [-d|--dereference]\r
-             [-s|--hash] [--abbrev] [--tags] [--heads] [--] &lt;pattern&gt;&#8230;</div></div>\r
+             [-s|--hash] [--abbrev] [--tags] [--heads] [--] &lt;pattern&gt;&#8230;\r
+<em>git-show-ref</em> --exclude-existing[=pattern]</div></div>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
@@ -282,6 +283,8 @@ git-show-ref(1) Manual Page
 commit IDs. Results can be filtered using a pattern and tags can be\r
 dereferenced into object IDs. Additionally, it can be used to test whether a\r
 particular ref exists.</p>\r
+<p>The --exclude-existing form is a filter that does the inverse, it shows the\r
+refs from stdin that don't exist in the local repository.</p>\r
 <p>Use of this utility is encouraged in favor of directly accessing files under\r
 in the <tt>.git</tt> directory.</p>\r
 </div>\r
@@ -353,6 +356,21 @@ in the <tt>.git</tt> directory.</p>
 </p>\r
 </dd>\r
 <dt>\r
+--exclude-existing, --exclude-existing=pattern\r
+</dt>\r
+<dd>\r
+<p>\r
+        Make git-show-ref act as a filter that reads refs from stdin of the\r
+        form "<sup>(?:&lt;anything&gt;\s)?&lt;refname&gt;(?:\</sup>{})?$" and performs the\r
+        following actions on each:\r
+        (1) strip "^{}" at the end of line if any;\r
+        (2) ignore if pattern is provided and does not head-match refname;\r
+        (3) warn if refname is not a well-formed refname and skip;\r
+        (4) ignore if refname is a ref that exists in the local repository;\r
+        (5) otherwise output the line.\r
+</p>\r
+</dd>\r
+<dt>\r
 &lt;pattern&gt;\r
 </dt>\r
 <dd>\r
@@ -442,7 +460,7 @@ Man page by Jonas Fonseca &lt;fonseca@diku.dk&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 04-Apr-2007 18:34:22 UTC\r
+Last updated 10-Apr-2007 21:31:10 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 5973a82517f2b64e5575b891a2fcee8ad0664b8a..2355aa5e86d21766bbde61e3188e1c9539738150 100644 (file)
@@ -10,6 +10,7 @@ SYNOPSIS
 [verse]
 'git-show-ref' [-q|--quiet] [--verify] [-h|--head] [-d|--dereference]
             [-s|--hash] [--abbrev] [--tags] [--heads] [--] <pattern>...
+'git-show-ref' --exclude-existing[=pattern]
 
 DESCRIPTION
 -----------
@@ -19,6 +20,9 @@ commit IDs. Results can be filtered using a pattern and tags can be
 dereferenced into object IDs. Additionally, it can be used to test whether a
 particular ref exists.
 
+The --exclude-existing form is a filter that does the inverse, it shows the
+refs from stdin that don't exist in the local repository.
+
 Use of this utility is encouraged in favor of directly accessing files under
 in the `.git` directory.
 
@@ -61,6 +65,18 @@ OPTIONS
        Do not print any results to stdout. When combined with '--verify' this
        can be used to silently check if a reference exists.
 
+--exclude-existing, --exclude-existing=pattern::
+
+       Make git-show-ref act as a filter that reads refs from stdin of the
+       form "^(?:<anything>\s)?<refname>(?:\^\{\})?$" and performs the
+       following actions on each:
+       (1) strip "^{}" at the end of line if any;
+       (2) ignore if pattern is provided and does not head-match refname;
+       (3) warn if refname is not a well-formed refname and skip;
+       (4) ignore if refname is a ref that exists in the local repository;
+       (5) otherwise output the line.
+
+
 <pattern>::
 
        Show references matching one or more patterns.