diff options
author | Alexander Gavrilov <angavrilov@gmail.com> | 2008-11-13 20:28:49 +0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-11-14 21:38:11 -0800 |
commit | a2df1fb2e52a49bf6b17b352581510efd851f337 (patch) | |
tree | 9413cf9fb055824f425ae5d9769b667ae305ace4 /Documentation/config.txt | |
parent | e1ca0defd2039aecd7b5a68ed653f8ec40cf509e (diff) | |
download | git-a2df1fb2e52a49bf6b17b352581510efd851f337.tar.gz git-a2df1fb2e52a49bf6b17b352581510efd851f337.tar.xz |
Documentation: New GUI configuration and command-line options.
Add information on new git-gui and gitk command-line options,
configuration variables, and the encoding attribute.
Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 32dcd643d..d53673221 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -796,6 +796,14 @@ gui.diffcontext:: Specifies how many context lines should be used in calls to diff made by the linkgit:git-gui[1]. The default is "5". +gui.encoding:: + Specifies the default encoding to use for displaying of + file contents in linkgit:git-gui[1] and linkgit:gitk[1]. + It can be overridden by setting the 'encoding' attribute + for relevant files (see linkgit:gitattributes[5]). + If this option is not set, the tools default to the + locale encoding. + gui.matchtrackingbranch:: Determines if new branches created with linkgit:git-gui[1] should default to tracking remote branches with matching names or @@ -818,6 +826,22 @@ gui.spellingdictionary:: the linkgit:git-gui[1]. When set to "none" spell checking is turned off. +gui.fastcopyblame:: + If true, 'git gui blame' uses '-C' instead of '-C -C' for original + location detection. It makes blame significantly faster on huge + repositories at the expense of less thorough copy detection. + +gui.copyblamethreshold:: + Specifies the theshold to use in 'git gui blame' original location + detection, measured in alphanumeric characters. See the + linkgit:git-blame[1] manual for more information on copy detection. + +gui.blamehistoryctx:: + Specifies the radius of history context in days to show in + linkgit:gitk[1] for the selected commit, when the `Show History + Context` menu item is invoked from 'git gui blame'. If this + variable is set to zero, the whole history is shown. + help.browser:: Specify the browser that will be used to display help in the 'web' format. See linkgit:git-help[1]. |