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 303026d7547fbb7c918559ee5e2d31746b0e1f67..5fc589b4af001834abbf87b824808628963c8337 100755 (executable)
@@ -44,6 +44,10 @@ Synonym for "\-p"\&.
 \-\-patch\-with\-raw
 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 9b67327104ebded408a811429d7323bbe63ee85e..8d900158eb1493089b7b230e5799363b0dcc83b9 100755 (executable)
@@ -44,6 +44,10 @@ Synonym for "\-p"\&.
 \-\-patch\-with\-raw
 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 d9226997949d51743e2457d23cea658f84f5d35f..b5e410f6dde16f26d6ef693abd5b7edd8e730236 100755 (executable)
@@ -44,6 +44,10 @@ Synonym for "\-p"\&.
 \-\-patch\-with\-raw
 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 bc55a7216a5700eb33fefd835d353664b35de02f..7ba8dd87cce03659a857c44c2f6570358a799bf7 100755 (executable)
@@ -53,6 +53,10 @@ Synonym for "\-p"\&.
 \-\-patch\-with\-raw
 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 b99113911ce70664e57a2aea8b5feb212dc9a8bc..7cc88c3555ef65df8e79d7ead14f2dc4a8c31094 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"