From: Junio C Hamano Date: Fri, 6 Apr 2007 00:51:45 +0000 (+0000) Subject: Autogenerated manpages for v1.5.1-53-g77e6f X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8da3ce4667ff1481c627a2d6a1a932102f94ed36;p=git.git Autogenerated manpages for v1.5.1-53-g77e6f --- diff --git a/man1/git-fsck.1 b/man1/git-fsck.1 index 988f57a3f..53b2cd34d 100644 --- a/man1/git-fsck.1 +++ b/man1/git-fsck.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\-FSCK" "1" "04/04/2007" "Git 1.5.1.31.ge421f" "Git Manual" +.TH "GIT\-FSCK" "1" "04/06/2007" "Git 1.5.1.53.g77e6f" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -12,7 +12,7 @@ git\-fsck \- Verifies the connectivity and validity of the objects in the databa .SH "SYNOPSIS" .sp .nf -\fIgit\-fsck\fR [\-\-tags] [\-\-root] [\-\-unreachable] [\-\-cache] +\fIgit\-fsck\fR [\-\-tags] [\-\-root] [\-\-unreachable] [\-\-cache] [\-\-no\-reflogs] [\-\-full] [\-\-strict] [*] .fi .SH "DESCRIPTION" @@ -36,6 +36,9 @@ Report tags. \-\-cache Consider any object recorded in the index also as a head node for an unreachability trace. .TP +\-\-no\-reflogs +Do not consider commits that are referenced only by an entry in a reflog to be reachable. This option is meant only to search for commits that used to be in a ref, but now aren't, but are still in that corresponding reflog. +.TP \-\-full Check not just objects in GIT_OBJECT_DIRECTORY ($GIT_DIR/objects), but also the ones found in alternate object pools listed in GIT_ALTERNATE_OBJECT_DIRECTORIES or $GIT_DIR/objects/info/alternates, and in packed git archives found in $GIT_DIR/objects/pack and corresponding pack subdirectories in alternate object pools. .TP diff --git a/man1/git-rev-list.1 b/man1/git-rev-list.1 index a85130b92..bb8bc0dee 100644 --- a/man1/git-rev-list.1 +++ b/man1/git-rev-list.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\-LIST" "1" "04/04/2007" "Git 1.5.1.31.ge421f" "Git Manual" +.TH "GIT\-REV\-LIST" "1" "04/06/2007" "Git 1.5.1.53.g77e6f" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -24,6 +24,7 @@ git\-rev\-list \- Lists commit objects in reverse chronological order [ \-\-stdin ] [ \-\-topo\-order ] [ \-\-parents ] + [ \-\-left\-right ] [ \-\-encoding[=] ] [ \-\-(author|committer|grep)= ] [ [\-\-objects | \-\-objects\-edge] [ \-\-unpacked ] ] @@ -259,6 +260,31 @@ Print the contents of the commit in raw\-format; each record is separated with a .TP \-\-parents Print the parents of the commit. +.TP +\-\-left\-right +Mark which side of a symmetric diff a commit is reachable from. Commits from the left side are prefixed with < and those from the right with >. If combined with \-\-boundary, those commits are prefixed with \-. + +For example, if you have this topology: +.sp +.nf + y\-\-\-b\-\-\-b branch B + / \\ / + / . + / / \\ + o\-\-\-x\-\-\-a\-\-\-a branch A +.fi +you would get an output line this: +.sp +.nf + $ git rev\-list \-\-left\-right \-\-boundary \-\-pretty=oneline A...B + + >bbbbbbb... 3rd on b + >bbbbbbb... 2nd on b +