Autogenerated man pages for v1.4.4.1-gf0df
authorJunio C Hamano <junio@hera.kernel.org>
Tue, 28 Nov 2006 02:22:45 +0000 (02:22 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Tue, 28 Nov 2006 02:22:45 +0000 (02:22 +0000)
man1/git-diff-files.1
man1/git-diff-index.1
man1/git-diff-stages.1
man1/git-diff-tree.1
man7/git.7

index 77cf86a39a3a30c3a4948ff455146b01bad1fd2c..a2f3a6575c68c5c702ca522cdc492c7fa88b7561 100755 (executable)
@@ -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\-DIFF\-FILES" "1" "10/27/2006" "" ""
+.TH "GIT\-DIFF\-FILES" "1" "11/28/2006" "" ""
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -218,74 +218,9 @@ Example:
 When \-z option is not used, TAB, LF, and backslash characters in pathnames are represented as \\t, \\n, and \\\\, respectively.
 .sp
 .SH "GENERATING PATCHES WITH \-P"
-When "git\-diff\-index", "git\-diff\-tree", or "git\-diff\-files" are run with a \fI\-p\fR option, they do not produce the output described above; instead they produce a patch file.
+When "git\-diff\-index", "git\-diff\-tree", or "git\-diff\-files" are run with a \fI\-p\fR option, they do not produce the output described above; instead they produce a patch file. You can customize the creation of such patches via the GIT_EXTERNAL_DIFF and the GIT_DIFF_OPTS environment variables.
 .sp
-The patch generation can be customized at two levels.
-.sp
-.TP 3
-1.
-When the environment variable
-\fIGIT_EXTERNAL_DIFF\fR
-is not set, these commands internally invoke "diff" like this:
-.sp
-.nf
-diff \-L a/<path> \-L b/<path> \-pu <old> <new>
-.fi
-For added files,
-/dev/null
-is used for <old>. For removed files,
-/dev/null
-is used for <new>
-.sp
-The "diff" formatting options can be customized via the environment variable
-\fIGIT_DIFF_OPTS\fR. For example, if you prefer context diff:
-.sp
-.nf
-GIT_DIFF_OPTS=\-c git\-diff\-index \-p HEAD
-.fi
-.TP
-2.
-When the environment variable
-\fIGIT_EXTERNAL_DIFF\fR
-is set, the program named by it is called, instead of the diff invocation described above.
-.sp
-For a path that is added, removed, or modified,
-\fIGIT_EXTERNAL_DIFF\fR
-is called with 7 parameters:
-.sp
-.nf
-path old\-file old\-hex old\-mode new\-file new\-hex new\-mode
-.fi
-where:
-<old|new>\-file
-
-are files GIT_EXTERNAL_DIFF can use to read the contents of <old|new>,
-
-<old|new>\-hex
-
-are the 40\-hexdigit SHA1 hashes,
-
-<old|new>\-mode
-
-are the octal representation of the file modes.
-
-The file parameters can point at the user's working file (e.g.
-new\-file
-in "git\-diff\-files"),
-/dev/null
-(e.g.
-old\-file
-when a new file is added), or a temporary file (e.g.
-old\-file
-in the index).
-\fIGIT_EXTERNAL_DIFF\fR
-should not worry about unlinking the temporary file \-\-\- it is removed when
-\fIGIT_EXTERNAL_DIFF\fR
-exits.
-For a path that is unmerged, \fIGIT_EXTERNAL_DIFF\fR is called with 1 parameter, <path>.
-.sp
-.SH "GIT SPECIFIC EXTENSION TO DIFF FORMAT"
-What \-p option produces is slightly different from the traditional diff format.
+What the \-p option produces is slightly different from the traditional diff format.
 .sp
 .TP 3
 1.
index 828b6b10db4e9ab1dcd069986fe555717813fab5..650bfa01db1e037bd845a0629200b358dc1ff09e 100755 (executable)
@@ -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\-DIFF\-INDEX" "1" "11/03/2006" "" ""
+.TH "GIT\-DIFF\-INDEX" "1" "11/28/2006" "" ""
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -214,74 +214,9 @@ Example:
 When \-z option is not used, TAB, LF, and backslash characters in pathnames are represented as \\t, \\n, and \\\\, respectively.
 .sp
 .SH "GENERATING PATCHES WITH \-P"
-When "git\-diff\-index", "git\-diff\-tree", or "git\-diff\-files" are run with a \fI\-p\fR option, they do not produce the output described above; instead they produce a patch file.
+When "git\-diff\-index", "git\-diff\-tree", or "git\-diff\-files" are run with a \fI\-p\fR option, they do not produce the output described above; instead they produce a patch file. You can customize the creation of such patches via the GIT_EXTERNAL_DIFF and the GIT_DIFF_OPTS environment variables.
 .sp
-The patch generation can be customized at two levels.
-.sp
-.TP 3
-1.
-When the environment variable
-\fIGIT_EXTERNAL_DIFF\fR
-is not set, these commands internally invoke "diff" like this:
-.sp
-.nf
-diff \-L a/<path> \-L b/<path> \-pu <old> <new>
-.fi
-For added files,
-/dev/null
-is used for <old>. For removed files,
-/dev/null
-is used for <new>
-.sp
-The "diff" formatting options can be customized via the environment variable
-\fIGIT_DIFF_OPTS\fR. For example, if you prefer context diff:
-.sp
-.nf
-GIT_DIFF_OPTS=\-c git\-diff\-index \-p HEAD
-.fi
-.TP
-2.
-When the environment variable
-\fIGIT_EXTERNAL_DIFF\fR
-is set, the program named by it is called, instead of the diff invocation described above.
-.sp
-For a path that is added, removed, or modified,
-\fIGIT_EXTERNAL_DIFF\fR
-is called with 7 parameters:
-.sp
-.nf
-path old\-file old\-hex old\-mode new\-file new\-hex new\-mode
-.fi
-where:
-<old|new>\-file
-
-are files GIT_EXTERNAL_DIFF can use to read the contents of <old|new>,
-
-<old|new>\-hex
-
-are the 40\-hexdigit SHA1 hashes,
-
-<old|new>\-mode
-
-are the octal representation of the file modes.
-
-The file parameters can point at the user's working file (e.g.
-new\-file
-in "git\-diff\-files"),
-/dev/null
-(e.g.
-old\-file
-when a new file is added), or a temporary file (e.g.
-old\-file
-in the index).
-\fIGIT_EXTERNAL_DIFF\fR
-should not worry about unlinking the temporary file \-\-\- it is removed when
-\fIGIT_EXTERNAL_DIFF\fR
-exits.
-For a path that is unmerged, \fIGIT_EXTERNAL_DIFF\fR is called with 1 parameter, <path>.
-.sp
-.SH "GIT SPECIFIC EXTENSION TO DIFF FORMAT"
-What \-p option produces is slightly different from the traditional diff format.
+What the \-p option produces is slightly different from the traditional diff format.
 .sp
 .TP 3
 1.
index 764bfe915a2396e4fb348bd42b2896ba9bd75d4f..87e8e1e296e6fde05348a969c590b92b7c86ca81 100755 (executable)
@@ -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\-DIFF\-STAGES" "1" "10/27/2006" "" ""
+.TH "GIT\-DIFF\-STAGES" "1" "11/28/2006" "" ""
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -208,74 +208,9 @@ Example:
 When \-z option is not used, TAB, LF, and backslash characters in pathnames are represented as \\t, \\n, and \\\\, respectively.
 .sp
 .SH "GENERATING PATCHES WITH \-P"
-When "git\-diff\-index", "git\-diff\-tree", or "git\-diff\-files" are run with a \fI\-p\fR option, they do not produce the output described above; instead they produce a patch file.
+When "git\-diff\-index", "git\-diff\-tree", or "git\-diff\-files" are run with a \fI\-p\fR option, they do not produce the output described above; instead they produce a patch file. You can customize the creation of such patches via the GIT_EXTERNAL_DIFF and the GIT_DIFF_OPTS environment variables.
 .sp
-The patch generation can be customized at two levels.
-.sp
-.TP 3
-1.
-When the environment variable
-\fIGIT_EXTERNAL_DIFF\fR
-is not set, these commands internally invoke "diff" like this:
-.sp
-.nf
-diff \-L a/<path> \-L b/<path> \-pu <old> <new>
-.fi
-For added files,
-/dev/null
-is used for <old>. For removed files,
-/dev/null
-is used for <new>
-.sp
-The "diff" formatting options can be customized via the environment variable
-\fIGIT_DIFF_OPTS\fR. For example, if you prefer context diff:
-.sp
-.nf
-GIT_DIFF_OPTS=\-c git\-diff\-index \-p HEAD
-.fi
-.TP
-2.
-When the environment variable
-\fIGIT_EXTERNAL_DIFF\fR
-is set, the program named by it is called, instead of the diff invocation described above.
-.sp
-For a path that is added, removed, or modified,
-\fIGIT_EXTERNAL_DIFF\fR
-is called with 7 parameters:
-.sp
-.nf
-path old\-file old\-hex old\-mode new\-file new\-hex new\-mode
-.fi
-where:
-<old|new>\-file
-
-are files GIT_EXTERNAL_DIFF can use to read the contents of <old|new>,
-
-<old|new>\-hex
-
-are the 40\-hexdigit SHA1 hashes,
-
-<old|new>\-mode
-
-are the octal representation of the file modes.
-
-The file parameters can point at the user's working file (e.g.
-new\-file
-in "git\-diff\-files"),
-/dev/null
-(e.g.
-old\-file
-when a new file is added), or a temporary file (e.g.
-old\-file
-in the index).
-\fIGIT_EXTERNAL_DIFF\fR
-should not worry about unlinking the temporary file \-\-\- it is removed when
-\fIGIT_EXTERNAL_DIFF\fR
-exits.
-For a path that is unmerged, \fIGIT_EXTERNAL_DIFF\fR is called with 1 parameter, <path>.
-.sp
-.SH "GIT SPECIFIC EXTENSION TO DIFF FORMAT"
-What \-p option produces is slightly different from the traditional diff format.
+What the \-p option produces is slightly different from the traditional diff format.
 .sp
 .TP 3
 1.
index 850882c656b46dda0f1ad6aeb3533cb805d32a7e..2c3294b4397c479ec975806fe269c76917a5ae25 100755 (executable)
@@ -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\-DIFF\-TREE" "1" "11/23/2006" "" ""
+.TH "GIT\-DIFF\-TREE" "1" "11/28/2006" "" ""
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -431,74 +431,9 @@ Example:
 When \-z option is not used, TAB, LF, and backslash characters in pathnames are represented as \\t, \\n, and \\\\, respectively.
 .sp
 .SH "GENERATING PATCHES WITH \-P"
-When "git\-diff\-index", "git\-diff\-tree", or "git\-diff\-files" are run with a \fI\-p\fR option, they do not produce the output described above; instead they produce a patch file.
+When "git\-diff\-index", "git\-diff\-tree", or "git\-diff\-files" are run with a \fI\-p\fR option, they do not produce the output described above; instead they produce a patch file. You can customize the creation of such patches via the GIT_EXTERNAL_DIFF and the GIT_DIFF_OPTS environment variables.
 .sp
-The patch generation can be customized at two levels.
-.sp
-.TP 3
-1.
-When the environment variable
-\fIGIT_EXTERNAL_DIFF\fR
-is not set, these commands internally invoke "diff" like this:
-.sp
-.nf
-diff \-L a/<path> \-L b/<path> \-pu <old> <new>
-.fi
-For added files,
-/dev/null
-is used for <old>. For removed files,
-/dev/null
-is used for <new>
-.sp
-The "diff" formatting options can be customized via the environment variable
-\fIGIT_DIFF_OPTS\fR. For example, if you prefer context diff:
-.sp
-.nf
-GIT_DIFF_OPTS=\-c git\-diff\-index \-p HEAD
-.fi
-.TP
-2.
-When the environment variable
-\fIGIT_EXTERNAL_DIFF\fR
-is set, the program named by it is called, instead of the diff invocation described above.
-.sp
-For a path that is added, removed, or modified,
-\fIGIT_EXTERNAL_DIFF\fR
-is called with 7 parameters:
-.sp
-.nf
-path old\-file old\-hex old\-mode new\-file new\-hex new\-mode
-.fi
-where:
-<old|new>\-file
-
-are files GIT_EXTERNAL_DIFF can use to read the contents of <old|new>,
-
-<old|new>\-hex
-
-are the 40\-hexdigit SHA1 hashes,
-
-<old|new>\-mode
-
-are the octal representation of the file modes.
-
-The file parameters can point at the user's working file (e.g.
-new\-file
-in "git\-diff\-files"),
-/dev/null
-(e.g.
-old\-file
-when a new file is added), or a temporary file (e.g.
-old\-file
-in the index).
-\fIGIT_EXTERNAL_DIFF\fR
-should not worry about unlinking the temporary file \-\-\- it is removed when
-\fIGIT_EXTERNAL_DIFF\fR
-exits.
-For a path that is unmerged, \fIGIT_EXTERNAL_DIFF\fR is called with 1 parameter, <path>.
-.sp
-.SH "GIT SPECIFIC EXTENSION TO DIFF FORMAT"
-What \-p option produces is slightly different from the traditional diff format.
+What the \-p option produces is slightly different from the traditional diff format.
 .sp
 .TP 3
 1.
index e812f608cb3a20fd7715f21782d767bd03cf8942..8df4203d232bd4f199dab11c6bee9c74c4427340 100755 (executable)
@@ -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" "11/18/2006" "" ""
+.TH "GIT" "7" "11/28/2006" "" ""
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -573,11 +573,49 @@ see
 \fBgit\-commit\-tree\fR(1)
 .SS "git Diffs"
 .TP
-\fIGIT_DIFF_OPTS\fR , \fIGIT_EXTERNAL_DIFF\fR
-see the "generating patches" section in :
-\fBgit\-diff\-index\fR(1);
-\fBgit\-diff\-files\fR(1);
-\fBgit\-diff\-tree\fR(1)
+\fIGIT_DIFF_OPTS\fR
+Only valid setting is "\-\-unified=??" or "\-u??" to set the number of context lines shown when a unified diff is created. This takes precedence over any "\-U" or "\-\-unified" option value passed on the git diff command line.
+.TP
+\fIGIT_EXTERNAL_DIFF\fR
+When the environment variable
+\fIGIT_EXTERNAL_DIFF\fR
+is set, the program named by it is called, instead of the diff invocation described above. For a path that is added, removed, or modified,
+\fIGIT_EXTERNAL_DIFF\fR
+is called with 7 parameters:
+.sp
+.nf
+path old\-file old\-hex old\-mode new\-file new\-hex new\-mode
+.fi
+where:
+<old|new>\-file
+
+are files GIT_EXTERNAL_DIFF can use to read the contents of <old|new>,
+
+<old|new>\-hex
+
+are the 40\-hexdigit SHA1 hashes,
+
+<old|new>\-mode
+
+are the octal representation of the file modes.
+
+The file parameters can point at the user's working file (e.g.
+new\-file
+in "git\-diff\-files"),
+/dev/null
+(e.g.
+old\-file
+when a new file is added), or a temporary file (e.g.
+old\-file
+in the index).
+\fIGIT_EXTERNAL_DIFF\fR
+should not worry about unlinking the temporary file \-\-\- it is removed when
+\fIGIT_EXTERNAL_DIFF\fR
+exits.
+.sp
+For a path that is unmerged,
+\fIGIT_EXTERNAL_DIFF\fR
+is called with 1 parameter, <path>.
 .SS "other"
 .TP
 \fIGIT_PAGER\fR