Autogenerated manpages for v1.5.2-rc3
authorJunio C Hamano <junio@hera.kernel.org>
Thu, 10 May 2007 23:25:10 +0000 (23:25 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Thu, 10 May 2007 23:25:10 +0000 (23:25 +0000)
man1/git-fast-import.1
man1/git-log.1
man1/git-rev-parse.1

index aa61e882e4f96efa82b633f53fb6f3fc9fc045b2..77c52d7a4bcc1ea99b28b7628d0d86fae9c13c8d 100644 (file)
@@ -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\-FAST\-IMPORT" "1" "04/22/2007" "Git 1.5.1.2.241.gfdd3e" "Git Manual"
+.TH "GIT\-FAST\-IMPORT" "1" "05/10/2007" "Git 1.5.2.rc3" "Git Manual"
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -318,7 +318,6 @@ Creates an annotated tag referring to a specific commit. To create lightweight (
         'from' SP <committish> LF
         'tagger' SP <name> SP LT <email> GT SP <when> LF
         data
-        LF
 .fi
 where <name> is the name of the tag to create.
 
index f10d1f5cf7d839912f7054ade6dc162d79e321cd..f299b1755016f7ab5a0899b406a2ac0ab2e15eea 100644 (file)
@@ -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\-LOG" "1" "04/22/2007" "Git 1.5.1.1.107.g7a15" "Git Manual"
+.TH "GIT\-LOG" "1" "05/10/2007" "Git 1.5.2.rc3" "Git Manual"
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -226,6 +226,9 @@ Show the change the commit introduces in a patch form.
 \-g, \-\-walk\-reflogs
 Show commits as they were recorded in the reflog. The log contains a record about how the tip of a reference was changed. See also \fBgit\-reflog\fR(1).
 .TP
+\-\-decorate
+Print out the ref names of any commits that are shown.
+.TP
 <paths>\&...
 Show only commits that affect the specified paths.
 .RE
index 7e8788d9a128a97b1c02e61403fe00c45d8c00be..66efbcbbc067f116c002ed714dbb869ffa542372 100644 (file)
@@ -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" "04/22/2007" "Git 1.5.1.2.241.gfdd3e" "Git Manual"
+.TH "GIT\-REV\-PARSE" "1" "05/10/2007" "Git 1.5.2.rc3" "Git Manual"
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -169,7 +169,7 @@ To exclude commits reachable from a commit, a prefix ^ notation is used. E.g. "^
 
 This set operation appears so often that there is a shorthand for it. "r1..r2" is equivalent to "^r1 r2". It is the difference of two sets (subtract the set of commits reachable from r1 from the set of commits reachable from r2).
 
-A similar notation "r1...r2" is called symmetric difference of r1 and r2 and is defined as "r1 r2 \-\-not $(git\-merge\-base \-\-all r1 r2)". It it the set of commits that are reachable from either one of r1 or r2 but not from both.
+A similar notation "r1...r2" is called symmetric difference of r1 and r2 and is defined as "r1 r2 \-\-not $(git\-merge\-base \-\-all r1 r2)". It is the set of commits that are reachable from either one of r1 or r2 but not from both.
 
 Two other shorthands for naming a set that is formed by a commit and its parent commits exists. r1^@ notation means all parents of r1. r1^! includes commit r1 but excludes its all parents.