From ef002b90ffbfcb20f48f54fc0529dc2cba54612d Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 11 Aug 2007 08:30:18 +0000 Subject: [PATCH] Autogenerated manpages for v1.5.3-rc4-67-gf9286 --- man1/git-annotate.1 | 20 +++++--------------- man1/git-blame.1 | 23 ++++++++--------------- man1/git-clone.1 | 34 +++++++++++++++++++++++++++++----- man1/git-fetch.1 | 23 ++++++++++++++++++++--- man1/git-pull.1 | 29 ++++++++++++++++++++++++++--- man1/git-push.1 | 11 ++++++++--- man1/git-rev-parse.1 | 2 +- man1/git-stripspace.1 | 7 +++++-- man1/git-tag.1 | 12 ++++++------ man1/git-verify-tag.1 | 6 +++--- man7/git.7 | 16 ++++++++-------- 11 files changed, 119 insertions(+), 64 deletions(-) diff --git a/man1/git-annotate.1 b/man1/git-annotate.1 index 57ce620bb..eef400768 100644 --- a/man1/git-annotate.1 +++ b/man1/git-annotate.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\-ANNOTATE" "1" "07/19/2007" "Git 1.5.2.rc0.71.g4342" "Git Manual" +.TH "GIT\-ANNOTATE" "1" "08/10/2007" "Git 1.5.3.rc4.41.g7efe" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -64,23 +64,13 @@ When is not specified, the command annotates the changes starting backward .TP \-M|| Detect moving lines in the file as well. When a commit moves a block of lines in a file (e.g. the original file has A and then B, and the commit changes it to B and then A), traditional \fIblame\fR algorithm typically blames the lines that were moved up (i.e. B) to the parent and assigns blame to the lines that were moved down (i.e. A) to the child commit. With this option, both groups of lines are blamed on the parent. -.sp -.nf - is optional but it is the lower bound on the number of -alphanumeric characters that git must detect as moving -within a file for it to associate those lines with the parent -commit. -.fi + + is optional but it is the lower bound on the number of alphanumeric characters that git must detect as moving within a file for it to associate those lines with the parent commit. .TP \-C|| In addition to \-M, detect lines copied from other files that were modified in the same commit. This is useful when you reorganize your program and move code around across files. When this option is given twice, the command looks for copies from all other files in the parent for the commit that creates the file in addition. -.sp -.nf - is optional but it is the lower bound on the number of -alphanumeric characters that git must detect as moving -between files for it to associate those lines with the parent -commit. -.fi + + is optional but it is the lower bound on the number of alphanumeric characters that git must detect as moving between files for it to associate those lines with the parent commit. .TP \-h, \-\-help Show help message. diff --git a/man1/git-blame.1 b/man1/git-blame.1 index 6d2eff5f0..1ce97cb33 100644 --- a/man1/git-blame.1 +++ b/man1/git-blame.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\-BLAME" "1" "07/19/2007" "Git 1.5.2.1.271.g90ac" "Git Manual" +.TH "GIT\-BLAME" "1" "08/11/2007" "Git 1.5.3.rc4.41.g7efe" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -26,9 +26,12 @@ This report doesn't tell you anything about lines which have been deleted or rep Apart from supporting file annotation, git also supports searching the development history for when a code snippet occurred in a change. This makes it possible to track when a code snippet was added to a file, moved or copied between files, and eventually deleted or replaced. It works by searching for a text string in the diff. A small example: .sp .nf +.ft C $ git log \-\-pretty=oneline \-S'blame_usage' 5040f17eba15504bad66b14a645bddd9b015ebb7 blame \-S ea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7 git\-blame: Make the output +.ft + .fi .SH "OPTIONS" .TP @@ -81,23 +84,13 @@ When is not specified, the command annotates the changes starting backward .TP \-M|| Detect moving lines in the file as well. When a commit moves a block of lines in a file (e.g. the original file has A and then B, and the commit changes it to B and then A), traditional \fIblame\fR algorithm typically blames the lines that were moved up (i.e. B) to the parent and assigns blame to the lines that were moved down (i.e. A) to the child commit. With this option, both groups of lines are blamed on the parent. -.sp -.nf - is optional but it is the lower bound on the number of -alphanumeric characters that git must detect as moving -within a file for it to associate those lines with the parent -commit. -.fi + + is optional but it is the lower bound on the number of alphanumeric characters that git must detect as moving within a file for it to associate those lines with the parent commit. .TP \-C|| In addition to \-M, detect lines copied from other files that were modified in the same commit. This is useful when you reorganize your program and move code around across files. When this option is given twice, the command looks for copies from all other files in the parent for the commit that creates the file in addition. -.sp -.nf - is optional but it is the lower bound on the number of -alphanumeric characters that git must detect as moving -between files for it to associate those lines with the parent -commit. -.fi + + is optional but it is the lower bound on the number of alphanumeric characters that git must detect as moving between files for it to associate those lines with the parent commit. .TP \-h, \-\-help Show help message. diff --git a/man1/git-clone.1 b/man1/git-clone.1 index de0725e65..d09fdda00 100644 --- a/man1/git-clone.1 +++ b/man1/git-clone.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\-CLONE" "1" "07/19/2007" "Git 1.5.3.rc1.4.gaf83" "Git Manual" +.TH "GIT\-CLONE" "1" "08/11/2007" "Git 1.5.3.rc4.67.gf9286" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -12,7 +12,8 @@ git\-clone \- Clone a repository into a new directory .SH "SYNOPSIS" .sp .nf -\fIgit\-clone\fR [\-\-template=] [\-l [\-s]] [\-q] [\-n] [\-\-bare] +\fIgit\-clone\fR [\-\-template=] + [\-l] [\-s] [\-\-no\-hardlinks] [\-q] [\-n] [\-\-bare] [\-o ] [\-u ] [\-\-reference ] [\-\-depth ] [] .fi @@ -25,7 +26,10 @@ This default configuration is achieved by creating references to the remote bran .SH "OPTIONS" .TP \-\-local , \-l -When the repository to clone from is on a local machine, this flag bypasses normal "git aware" transport mechanism and clones the repository by making a copy of HEAD and everything under objects and refs directories. The files under .git/objects/ directory are hardlinked to save space when possible. +When the repository to clone from is on a local machine, this flag bypasses normal "git aware" transport mechanism and clones the repository by making a copy of HEAD and everything under objects and refs directories. The files under .git/objects/ directory are hardlinked to save space when possible. This is now the default when the source repository is specified with /path/to/repo syntax, so it essentially is a no\-op option. To force copying instead of hardlinking (which may be desirable if you are trying to make a back\-up of your repository), but still avoid the usual "git aware" transport mechanism, \-\-no\-hardlinks can be used. +.TP +\-\-no\-hardlinks +Optimize the cloning process from a repository on a local filesystem by copying files under .git/objects directory. .TP \-\-shared , \-s When the repository to clone is on the local machine, instead of using hard links, automatically setup .git/objects/info/alternates to share the objects with the source repository. The resulting repository starts out without any object of its own. @@ -87,7 +91,7 @@ ssh://[user@]host.xz/~user/path/to/repo.git/ \(bu ssh://[user@]host.xz/~/path/to/repo.git -SSH is the default transport protocol. You can optionally specify which user to log\-in as, and an alternate, scp\-like syntax is also supported. Both syntaxes support username expansion, as does the native git protocol. The following three are identical to the last three above, respectively: +SSH is the default transport protocol over the network. You can optionally specify which user to log\-in as, and an alternate, scp\-like syntax is also supported. Both syntaxes support username expansion, as does the native git protocol. The following three are identical to the last three above, respectively: .IP .TP 3 \(bu @@ -99,49 +103,69 @@ SSH is the default transport protocol. You can optionally specify which user to \(bu [user@]host.xz:path/to/repo.git -To sync with a local directory, use: +To sync with a local directory, you can use: .IP .TP 3 \(bu /path/to/repo.git/ +.TP +\(bu +file:///path/to/repo.git/ + +They are mostly equivalent, except when cloning. See \fBgit\-clone\fR(1) for details. .SH "EXAMPLES" .TP Clone from upstream .sp .nf +.ft C $ git clone git://git.kernel.org/pub/scm/.../linux\-2.6 my2.6 $ cd my2.6 $ make +.ft + .fi .TP Make a local clone that borrows from the current directory, without checking things out .sp .nf +.ft C $ git clone \-l \-s \-n . ../copy $ cd ../copy $ git show\-branch +.ft + .fi .TP Clone from upstream while borrowing from an existing local directory .sp .nf +.ft C $ git clone \-\-reference my2.6 \\ git://git.kernel.org/pub/scm/.../linux\-2.7 \\ my2.7 $ cd my2.7 +.ft + .fi .TP Create a bare repository to publish your changes to the public .sp .nf +.ft C $ git clone \-\-bare \-l /home/proj/.git /pub/scm/proj.git +.ft + .fi .TP Create a repository on the kernel.org machine that borrows from Linus .sp .nf +.ft C $ git clone \-\-bare \-l \-s /pub/scm/.../torvalds/linux\-2.6.git \\ /pub/scm/.../me/subsys\-2.6.git +.ft + .fi .SH "AUTHOR" Written by Linus Torvalds diff --git a/man1/git-fetch.1 b/man1/git-fetch.1 index db18918f1..b56d9deb4 100644 --- a/man1/git-fetch.1 +++ b/man1/git-fetch.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\-FETCH" "1" "07/19/2007" "Git 1.5.3.rc0.39.g46f7" "Git Manual" +.TH "GIT\-FETCH" "1" "08/11/2007" "Git 1.5.3.rc4.67.gf9286" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -115,7 +115,7 @@ ssh://[user@]host.xz/~user/path/to/repo.git/ \(bu ssh://[user@]host.xz/~/path/to/repo.git -SSH is the default transport protocol. You can optionally specify which user to log\-in as, and an alternate, scp\-like syntax is also supported. Both syntaxes support username expansion, as does the native git protocol. The following three are identical to the last three above, respectively: +SSH is the default transport protocol over the network. You can optionally specify which user to log\-in as, and an alternate, scp\-like syntax is also supported. Both syntaxes support username expansion, as does the native git protocol. The following three are identical to the last three above, respectively: .IP .TP 3 \(bu @@ -127,40 +127,57 @@ SSH is the default transport protocol. You can optionally specify which user to \(bu [user@]host.xz:path/to/repo.git -To sync with a local directory, use: +To sync with a local directory, you can use: .IP .TP 3 \(bu /path/to/repo.git/ +.TP +\(bu +file:///path/to/repo.git/ + +They are mostly equivalent, except when cloning. See \fBgit\-clone\fR(1) for details. .SH "REMOTES" In addition to the above, as a short\-hand, the name of a file in $GIT_DIR/remotes directory can be given; the named file should be in the following format: .sp .nf +.ft C URL: one of the above URL format Push: Pull: +.ft + .fi Then such a short\-hand is specified in place of without parameters on the command line, specified on Push: lines or Pull: lines are used for git\-push and git\-fetch/git\-pull, respectively. Multiple Push: and Pull: lines may be specified for additional branch mappings. Or, equivalently, in the $GIT_DIR/config (note the use of fetch instead of Pull:): .sp .nf +.ft C [remote ""] url = push = fetch = +.ft + .fi The name of a file in $GIT_DIR/branches directory can be specified as an older notation short\-hand; the named file should contain a single line, a URL in one of the above formats, optionally followed by a hash # and the name of remote head (URL fragment notation). $GIT_DIR/branches/ file that stores a without the fragment is equivalent to have this in the corresponding file in the $GIT_DIR/remotes/ directory. .sp .nf +.ft C URL: Pull: refs/heads/master: +.ft + .fi while having # is equivalent to .sp .nf +.ft C URL: Pull: refs/heads/: +.ft + .fi .SH "SEE ALSO" \fBgit\-pull\fR(1) diff --git a/man1/git-pull.1 b/man1/git-pull.1 index 7a58bda73..7c8192947 100644 --- a/man1/git-pull.1 +++ b/man1/git-pull.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\-PULL" "1" "07/19/2007" "Git 1.5.3.rc0.39.g46f7" "Git Manual" +.TH "GIT\-PULL" "1" "08/11/2007" "Git 1.5.3.rc4.67.gf9286" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -128,7 +128,7 @@ ssh://[user@]host.xz/~user/path/to/repo.git/ \(bu ssh://[user@]host.xz/~/path/to/repo.git -SSH is the default transport protocol. You can optionally specify which user to log\-in as, and an alternate, scp\-like syntax is also supported. Both syntaxes support username expansion, as does the native git protocol. The following three are identical to the last three above, respectively: +SSH is the default transport protocol over the network. You can optionally specify which user to log\-in as, and an alternate, scp\-like syntax is also supported. Both syntaxes support username expansion, as does the native git protocol. The following three are identical to the last three above, respectively: .IP .TP 3 \(bu @@ -140,40 +140,57 @@ SSH is the default transport protocol. You can optionally specify which user to \(bu [user@]host.xz:path/to/repo.git -To sync with a local directory, use: +To sync with a local directory, you can use: .IP .TP 3 \(bu /path/to/repo.git/ +.TP +\(bu +file:///path/to/repo.git/ + +They are mostly equivalent, except when cloning. See \fBgit\-clone\fR(1) for details. .SH "REMOTES" In addition to the above, as a short\-hand, the name of a file in $GIT_DIR/remotes directory can be given; the named file should be in the following format: .sp .nf +.ft C URL: one of the above URL format Push: Pull: +.ft + .fi Then such a short\-hand is specified in place of without parameters on the command line, specified on Push: lines or Pull: lines are used for git\-push and git\-fetch/git\-pull, respectively. Multiple Push: and Pull: lines may be specified for additional branch mappings. Or, equivalently, in the $GIT_DIR/config (note the use of fetch instead of Pull:): .sp .nf +.ft C [remote ""] url = push = fetch = +.ft + .fi The name of a file in $GIT_DIR/branches directory can be specified as an older notation short\-hand; the named file should contain a single line, a URL in one of the above formats, optionally followed by a hash # and the name of remote head (URL fragment notation). $GIT_DIR/branches/ file that stores a without the fragment is equivalent to have this in the corresponding file in the $GIT_DIR/remotes/ directory. .sp .nf +.ft C URL: Pull: refs/heads/master: +.ft + .fi while having # is equivalent to .sp .nf +.ft C URL: Pull: refs/heads/: +.ft + .fi .SH "MERGE STRATEGIES" .TP @@ -196,7 +213,10 @@ In order to determine what URL to use to fetch from, the value of the configurat In order to determine what remote branches to fetch (and optionally store in the tracking branches) when the command is run without any refspec parameters on the command line, values of the configuration variable remote..fetch are consulted, and if there aren't any, $GIT_DIR/remotes/ file is consulted and its Pull: lines are used. In addition to the refspec formats described in the OPTIONS section, you can have a globbing refspec that looks like this: .sp .nf +.ft C refs/heads/*:refs/remotes/origin/* +.ft + .fi A globbing refspec must have a non\-empty RHS (i.e. must store what were fetched in tracking branches), and its LHS and RHS must end with /*. The above specifies that all remote branches are tracked using tracking branches in refs/remotes/origin/ hierarchy under the same name. @@ -236,9 +256,12 @@ You should refrain from abusing this option to sneak substantial changes into a Command line pull of multiple branches from one repository .sp .nf +.ft C $ git checkout master $ git fetch origin +pu:pu maint:tmp $ git pull . tmp +.ft + .fi This updates (or creates, as necessary) branches pu and tmp in the local repository by fetching from the branches (respectively) pu and maint from the remote repository. diff --git a/man1/git-push.1 b/man1/git-push.1 index d69f5db05..1e7b65591 100644 --- a/man1/git-push.1 +++ b/man1/git-push.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\-PUSH" "1" "08/06/2007" "Git 1.5.3.rc4.15.ga2c3d" "Git Manual" +.TH "GIT\-PUSH" "1" "08/11/2007" "Git 1.5.3.rc4.67.gf9286" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -90,7 +90,7 @@ ssh://[user@]host.xz/~user/path/to/repo.git/ \(bu ssh://[user@]host.xz/~/path/to/repo.git -SSH is the default transport protocol. You can optionally specify which user to log\-in as, and an alternate, scp\-like syntax is also supported. Both syntaxes support username expansion, as does the native git protocol. The following three are identical to the last three above, respectively: +SSH is the default transport protocol over the network. You can optionally specify which user to log\-in as, and an alternate, scp\-like syntax is also supported. Both syntaxes support username expansion, as does the native git protocol. The following three are identical to the last three above, respectively: .IP .TP 3 \(bu @@ -102,11 +102,16 @@ SSH is the default transport protocol. You can optionally specify which user to \(bu [user@]host.xz:path/to/repo.git -To sync with a local directory, use: +To sync with a local directory, you can use: .IP .TP 3 \(bu /path/to/repo.git/ +.TP +\(bu +file:///path/to/repo.git/ + +They are mostly equivalent, except when cloning. See \fBgit\-clone\fR(1) for details. .SH "REMOTES" In addition to the above, as a short\-hand, the name of a file in $GIT_DIR/remotes directory can be given; the named file should be in the following format: .sp diff --git a/man1/git-rev-parse.1 b/man1/git-rev-parse.1 index 5280bcf55..fce164f93 100644 --- a/man1/git-rev-parse.1 +++ b/man1/git-rev-parse.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\-REV\-PARSE" "1" "07/19/2007" "Git 1.5.3.rc2.19.gc4fba" "Git Manual" +.TH "GIT\-REV\-PARSE" "1" "08/11/2007" "Git 1.5.3.rc4.67.gf9286" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) diff --git a/man1/git-stripspace.1 b/man1/git-stripspace.1 index c841fe2aa..49504a186 100644 --- a/man1/git-stripspace.1 +++ b/man1/git-stripspace.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\-STRIPSPACE" "1" "07/19/2007" "Git 1.5.3.rc2.19.gc4fba" "Git Manual" +.TH "GIT\-STRIPSPACE" "1" "08/11/2007" "Git 1.5.3.rc4.67.gf9286" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -10,11 +10,14 @@ .SH "NAME" git\-stripspace \- Filter out empty lines .SH "SYNOPSIS" -\fIgit\-stripspace\fR < +\fIgit\-stripspace\fR [\-s | \-\-strip\-comments] < .SH "DESCRIPTION" Remove multiple empty lines, and empty lines at beginning and end. .SH "OPTIONS" .TP +\-s\\|\-\-strip\-comments +In addition to empty lines, also strip lines starting with \fI#\fR. +.TP Byte stream to act on. .SH "AUTHOR" diff --git a/man1/git-tag.1 b/man1/git-tag.1 index 415c2f9d1..ac6cf32aa 100644 --- a/man1/git-tag.1 +++ b/man1/git-tag.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\-TAG" "1" "07/19/2007" "Git 1.5.3.rc2.19.gc4fba" "Git Manual" +.TH "GIT\-TAG" "1" "08/11/2007" "Git 1.5.3.rc4.67.gf9286" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -15,14 +15,14 @@ git\-tag \- Create, list, delete or verify a tag object signed with GPG \fIgit\-tag\fR [\-a | \-s | \-u ] [\-f] [\-m | \-F ] [] \fIgit\-tag\fR \-d \&... \fIgit\-tag\fR [\-n []] \-l [] -\fIgit\-tag\fR \-v +\fIgit\-tag\fR \-v \&... .fi .SH "DESCRIPTION" Adds a \fItag\fR reference in .git/refs/tags/ Unless \-f is given, the tag must not yet exist in .git/refs/tags/ directory. -If one of \-a, \-s, or \-u is passed, the command creates a \fItag\fR object, and requires the tag message. Unless \-m is given, an editor is started for the user to type in the tag message. +If one of \-a, \-s, or \-u is passed, the command creates a \fItag\fR object, and requires the tag message. Unless \-m or \-F is given, an editor is started for the user to type in the tag message. Otherwise just the SHA1 object name of the commit object is written (i.e. a lightweight tag). @@ -51,13 +51,13 @@ Replace an existing tag with the given name (instead of failing) Delete existing tags with the given names. .TP \-v -Verify the gpg signature of given the tag +Verify the gpg signature of the given tag names. .TP \-n - specifies how many lines from the annotation, if any, are printed when using \-l. The default is not to print any annotation lines. + specifies how many lines from the annotation, if any, are printed when using \-l. The default is not to print any annotation lines. If no number is given to \-n, only the first line is printed. .TP \-l -List tags with names that match the given pattern (or all if no pattern is given). +List tags with names that match the given pattern (or all if no pattern is given). Typing "git tag" without arguments, also lists all tags. .TP \-m Use the given tag message (instead of prompting) diff --git a/man1/git-verify-tag.1 b/man1/git-verify-tag.1 index 9b9b427e2..08b9c9dd5 100644 --- a/man1/git-verify-tag.1 +++ b/man1/git-verify-tag.1 @@ -2,15 +2,15 @@ .\" 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\-VERIFY\-TAG" "1" "07/19/2007" "Git 1.5.3.rc2.19.gc4fba" "Git Manual" +.TH "GIT\-VERIFY\-TAG" "1" "08/11/2007" "Git 1.5.3.rc4.67.gf9286" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .SH "NAME" -git\-verify\-tag \- Check the GPG signature of tag +git\-verify\-tag \- Check the GPG signature of tags .SH "SYNOPSIS" -\fIgit\-verify\-tag\fR +\fIgit\-verify\-tag\fR \&... .SH "DESCRIPTION" Validates the gpg signature created by git\-tag. .SH "OPTIONS" diff --git a/man7/git.7 b/man7/git.7 index d39469fb0..965b0925b 100644 --- a/man7/git.7 +++ b/man7/git.7 @@ -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" "7" "08/06/2007" "Git 1.5.3.rc4.15.ga2c3d" "Git Manual" +.TH "GIT" "7" "08/11/2007" "Git 1.5.3.rc4.67.gf9286" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -168,6 +168,9 @@ Create, list, delete or verify a tag object signed with GPG. .SS "Ancillary Commands" Manipulators: .TP +\fBgit\-config\fR(1) +Get and set repository or global options. +.TP \fBgit\-convert\-objects\fR(1) Converts old\-style git repository. .TP @@ -195,14 +198,11 @@ Manage reflog information. \fBgit\-relink\fR(1) Hardlink common objects in local repositories. .TP -\fBgit\-repack\fR(1) -Pack unpacked objects in a repository. -.TP -\fBgit\-config\fR(1) -Get and set repository or global options. -.TP \fBgit\-remote\fR(1) manage set of tracked repositories. +.TP +\fBgit\-repack\fR(1) +Pack unpacked objects in a repository. Interrogators: .TP @@ -243,7 +243,7 @@ A helper for git\-status and git\-commit. Show branches and their commits. .TP \fBgit\-verify\-tag\fR(1) -Check the GPG signature of tag. +Check the GPG signature of tags. .TP \fBgit\-whatchanged\fR(1) Show logs with difference each commit introduces. -- 2.26.2