From: Junio C Hamano
Date: Sat, 8 Mar 2008 09:33:55 +0000 (+0000)
Subject: Autogenerated HTML docs for v1.5.4.3-484-g60e3
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=86bccccdbdcef5b72f60cca6ec3d9594b271dc63;p=git.git
Autogenerated HTML docs for v1.5.4.3-484-g60e3
---
diff --git a/config.txt b/config.txt
index 4027726f2..c5e094a9c 100644
--- a/config.txt
+++ b/config.txt
@@ -556,6 +556,11 @@ format.suffix::
`.patch`. Use this variable to change that suffix (make sure to
include the dot if you want it).
+format.pretty::
+ The default pretty format for log/show/whatchanged command,
+ See linkgit:git-log[1], linkgit:git-show[1],
+ linkgit:git-whatchanged[1].
+
gc.aggressiveWindow::
The window size parameter used in the delta compression
algorithm used by 'git gc --aggressive'. This defaults
@@ -749,8 +754,10 @@ merge.summary::
merge.tool::
Controls which merge resolution program is used by
- linkgit:git-mergetool[1]. Valid values are: "kdiff3", "tkdiff",
- "meld", "xxdiff", "emerge", "vimdiff", "gvimdiff", and "opendiff".
+ linkgit:git-mergetool[1]. Valid built-in values are: "kdiff3",
+ "tkdiff", "meld", "xxdiff", "emerge", "vimdiff", "gvimdiff", and
+ "opendiff". Any other value is treated is custom merge tool
+ and there must be a corresponing mergetool..cmd option.
merge.verbosity::
Controls the amount of output shown by the recursive merge
@@ -777,6 +784,31 @@ mergetool..path::
Override the path for the given tool. This is useful in case
your tool is not in the PATH.
+mergetool..cmd::
+ Specify the command to invoke the specified merge tool. The
+ specified command is evaluated in shell with the following
+ variables available: 'BASE' is the name of a temporary file
+ containing the common base of the files to be merged, if available;
+ 'LOCAL' is the name of a temporary file containing the contents of
+ the file on the current branch; 'REMOTE' is the name of a temporary
+ file containing the contents of the file from the branch being
+ merged; 'MERGED' contains the name of the file to which the merge
+ tool should write the results of a successful merge.
+
+mergetool..trustExitCode::
+ For a custom merge command, specify whether the exit code of
+ the merge command can be used to determine whether the merge was
+ successful. If this is not set to true then the merge target file
+ timestamp is checked and the merge assumed to have been successful
+ if the file has been updated, otherwise the user is prompted to
+ indicate the success of the merge.
+
+mergetool.keepBackup::
+ After performing a merge, the original file with conflict markers
+ can be saved as a file with a `.orig` extension. If this variable
+ is set to `false` then this file is not preserved. Defaults to
+ `true` (i.e. keep the backup files).
+
pack.window::
The size of the window used by linkgit:git-pack-objects[1] when no
window size is given on the command line. Defaults to 10.
@@ -864,15 +896,15 @@ remote..skipDefaultUpdate::
remote..receivepack::
The default program to execute on the remote side when pushing. See
- option \--exec of linkgit:git-push[1].
+ option \--receive-pack of linkgit:git-push[1].
remote..uploadpack::
The default program to execute on the remote side when fetching. See
- option \--exec of linkgit:git-fetch-pack[1].
+ option \--upload-pack of linkgit:git-fetch-pack[1].
remote..tagopt::
- Setting this value to --no-tags disables automatic tag following when fetching
- from remote
+ Setting this value to \--no-tags disables automatic tag following when
+ fetching from remote
remotes.::
The list of remotes which are fetched by "git remote update
diff --git a/git-config.html b/git-config.html
index e39570eb7..9be8b83cd 100644
--- a/git-config.html
+++ b/git-config.html
@@ -1507,6 +1507,16 @@ format.suffix
+format.pretty
+
+
+
+ The default pretty format for log/show/whatchanged command,
+ See git-log(1), git-show(1),
+ git-whatchanged(1).
+
+
+
gc.aggressiveWindow
@@ -1879,8 +1889,10 @@ merge.tool
Controls which merge resolution program is used by
- git-mergetool(1). Valid values are: "kdiff3", "tkdiff",
- "meld", "xxdiff", "emerge", "vimdiff", "gvimdiff", and "opendiff".
+ git-mergetool(1). Valid built-in values are: "kdiff3",
+ "tkdiff", "meld", "xxdiff", "emerge", "vimdiff", "gvimdiff", and
+ "opendiff". Any other value is treated is custom merge tool
+ and there must be a corresponing mergetool.<tool>.cmd option.
@@ -1934,6 +1946,46 @@ mergetool.<tool>.path
+mergetool.<tool>.cmd
+
+
+
+ Specify the command to invoke the specified merge tool. The
+ specified command is evaluated in shell with the following
+ variables available: BASE is the name of a temporary file
+ containing the common base of the files to be merged, if available;
+ LOCAL is the name of a temporary file containing the contents of
+ the file on the current branch; REMOTE is the name of a temporary
+ file containing the contents of the file from the branch being
+ merged; MERGED contains the name of the file to which the merge
+ tool should write the results of a successful merge.
+
+
+
+mergetool.<tool>.trustExitCode
+
+
+
+ For a custom merge command, specify whether the exit code of
+ the merge command can be used to determine whether the merge was
+ successful. If this is not set to true then the merge target file
+ timestamp is checked and the merge assumed to have been successful
+ if the file has been updated, otherwise the user is prompted to
+ indicate the success of the merge.
+
+
+
+mergetool.keepBackup
+
+
+
+ After performing a merge, the original file with conflict markers
+ can be saved as a file with a .orig extension. If this variable
+ is set to false then this file is not preserved. Defaults to
+ true (i.e. keep the backup files).
+
+
+
pack.window
@@ -2100,7 +2152,7 @@ remote.<name>.receivepack
The default program to execute on the remote side when pushing. See
- option --exec of git-push(1).
+ option --receive-pack of git-push(1).
@@ -2109,7 +2161,7 @@ remote.<name>.uploadpack
The default program to execute on the remote side when fetching. See
- option --exec of git-fetch-pack(1).
+ option --upload-pack of git-fetch-pack(1).
@@ -2117,8 +2169,8 @@ remote.<name>.tagopt
- Setting this value to --no-tags disables automatic tag following when fetching
- from remote <name>
+ Setting this value to --no-tags disables automatic tag following when
+ fetching from remote <name>
@@ -2308,7 +2360,7 @@ web.browser