From: Junio C Hamano Date: Tue, 10 Apr 2007 21:31:36 +0000 (+0000) Subject: Autogenerated manpages for v1.5.1-108-gf8ce1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=424d0732e52e2e6dbecc158634cd56121f85a84f;p=git.git Autogenerated manpages for v1.5.1-108-gf8ce1 --- diff --git a/man1/git-archive.1 b/man1/git-archive.1 index 9ef145879..480ffd191 100644 --- a/man1/git-archive.1 +++ b/man1/git-archive.1 @@ -2,7 +2,7 @@ .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1). .\" Instead of manually editing it, you probably should edit the DocBook XML .\" source for it and then use the DocBook XSL Stylesheets to regenerate it. -.TH "GIT\-ARCHIVE" "1" "04/04/2007" "Git 1.5.1.31.ge421f" "Git Manual" +.TH "GIT\-ARCHIVE" "1" "04/10/2007" "Git 1.5.1.108.gf8ce1" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -18,7 +18,7 @@ Creates an archive of the specified format containing the tree structure for the .SH "OPTIONS" .TP \-\-format= -Format of the resulting archive: \fItar\fR, \fIzip\fR\&... +Format of the resulting archive: \fItar\fR, \fIzip\fR\&... The default is \fItar\fR. .TP \-\-list Show all available formats. diff --git a/man1/git-show-ref.1 b/man1/git-show-ref.1 index 5df63989d..b75ac0ea9 100644 --- a/man1/git-show-ref.1 +++ b/man1/git-show-ref.1 @@ -2,7 +2,7 @@ .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1). .\" Instead of manually editing it, you probably should edit the DocBook XML .\" source for it and then use the DocBook XSL Stylesheets to regenerate it. -.TH "GIT\-SHOW\-REF" "1" "04/04/2007" "Git 1.5.1.31.ge421f" "Git Manual" +.TH "GIT\-SHOW\-REF" "1" "04/10/2007" "Git 1.5.1.108.gf8ce1" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -14,10 +14,13 @@ git\-show\-ref \- List references in a local repository .nf \fIgit\-show\-ref\fR [\-q|\-\-quiet] [\-\-verify] [\-h|\-\-head] [\-d|\-\-dereference] [\-s|\-\-hash] [\-\-abbrev] [\-\-tags] [\-\-heads] [\-\-] \&... +\fIgit\-show\-ref\fR \-\-exclude\-existing[=pattern] .fi .SH "DESCRIPTION" Displays references available in a local repository along with the associated 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. .SH "OPTIONS" .TP @@ -42,6 +45,9 @@ Abbreviate the object name. When using \-\-hash, you do not have to say \-\-hash \-q, \-\-quiet Do not print any results to stdout. When combined with \fI\-\-verify\fR this can be used to silently check if a reference exists. .TP +\-\-exclude\-existing, \-\-exclude\-existing=pattern +Make git\-show\-ref act as a filter that reads refs from stdin of the form "(?:\\s)?(?:\\{})?$" 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. +.TP Show references matching one or more patterns. .SH "OUTPUT"