Autogenerated man pages for v1.3.0-rc3-g170a
authorJunio C Hamano <junio@hera.kernel.org>
Sat, 15 Apr 2006 06:17:59 +0000 (06:17 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Sat, 15 Apr 2006 06:17:59 +0000 (06:17 +0000)
man1/git-diff-files.1
man1/git-diff-index.1
man1/git-diff-stages.1
man1/git-diff-tree.1
man1/git-log.1

index 303026d..5fc589b 100755 (executable)
@@ -45,6 +45,10 @@ Synonym for "\-p"\&.
 Generate patch but keep also the default raw diff output\&.
 
 .TP
+\-\-stat
+Generate a diffstat instead of a patch\&.
+
+.TP
 \-z
 \\0 line termination on output
 
index 9b67327..8d90015 100755 (executable)
@@ -45,6 +45,10 @@ Synonym for "\-p"\&.
 Generate patch but keep also the default raw diff output\&.
 
 .TP
+\-\-stat
+Generate a diffstat instead of a patch\&.
+
+.TP
 \-z
 \\0 line termination on output
 
index d922699..b5e410f 100755 (executable)
@@ -45,6 +45,10 @@ Synonym for "\-p"\&.
 Generate patch but keep also the default raw diff output\&.
 
 .TP
+\-\-stat
+Generate a diffstat instead of a patch\&.
+
+.TP
 \-z
 \\0 line termination on output
 
index bc55a72..7ba8dd8 100755 (executable)
@@ -54,6 +54,10 @@ Synonym for "\-p"\&.
 Generate patch but keep also the default raw diff output\&.
 
 .TP
+\-\-stat
+Generate a diffstat instead of a patch\&.
+
+.TP
 \-z
 \\0 line termination on output
 
index b991139..7cc88c3 100755 (executable)
@@ -23,12 +23,15 @@ git-log \- Show commit logs
 .SH "SYNOPSIS"
 
 
-git\-log <option>...
+\fIgit\-log\fR <option>...
 
 .SH "DESCRIPTION"
 
 
-Shows the commit logs\&. This command internally invokes git\-rev\-list, and the command line options are passed to that command\&.
+Shows the commit logs\&.
+
+
+The command takes options applicable to the \fB:git\-rev\-list\fR(1) command to control what is shown and how, and options applicable to the \fB:git\-diff\-tree\fR(1) commands to control how the change each commit introduces are shown\&.
 
 
 This manual page describes only the most frequently used options\&.
@@ -47,6 +50,14 @@ Limits the number of commits to show\&.
 <since>\&.\&.<until>
 Show only commits between the named two commits\&.
 
+.TP
+\-p
+Show the change the commit introduces in a patch form\&.
+
+.TP
+<paths>...
+Show only commits that affect the specified paths\&.
+
 .SH "EXAMPLES"
 
 .TP
@@ -55,11 +66,15 @@ Show the whole commit history, but skip any merges
 
 .TP
 git log v2\&.6\&.12\&.\&. include/scsi drivers/scsi
-Show all commits since version v2\&.6\&.12 that changed any file in the include/scsi or drivers/scsi subdirectories
+Show all commits since version \fIv2\&.6\&.12\fR that changed any file in the include/scsi or drivers/scsi subdirectories
 
 .TP
 git log \-\-since="2 weeks ago" -- gitk
-Show the changes during the last two weeks to the file gitk\&. The "\-\-" is necessary to avoid confusion with the branch named gitk 
+Show the changes during the last two weeks to the file \fIgitk\fR\&. The "\-\-" is necessary to avoid confusion with the \fIbranch\fR named \fIgitk\fR 
+
+.TP
+git log \-r \-\-name\-status release\&.\&.test
+Show the commits that are in the "test" branch but not yet in the "release" branch, along with the list of paths each commit modifies\&.
 
 .SH "AUTHOR"