1CONFIGURATION FILE 2------------------ 3 4The git configuration file contains a number of variables that affect 5the git command's behavior. The `.git/config` file in each repository 6is used to store the configuration for that repository, and 7`$HOME/.gitconfig` is used to store a per-user configuration as 8fallback values for the `.git/config` file. The file `/etc/gitconfig` 9can be used to store a system-wide default configuration. 10 11The configuration variables are used by both the git plumbing 12and the porcelains. The variables are divided into sections, wherein 13the fully qualified variable name of the variable itself is the last 14dot-separated segment and the section name is everything before the last 15dot. The variable names are case-insensitive, allow only alphanumeric 16characters and `-`, and must start with an alphabetic character. Some 17variables may appear multiple times. 18 19Syntax 20~~~~~~ 21 22The syntax is fairly flexible and permissive; whitespaces are mostly 23ignored. The '#' and ';' characters begin comments to the end of line, 24blank lines are ignored. 25 26The file consists of sections and variables. A section begins with 27the name of the section in square brackets and continues until the next 28section begins. Section names are not case sensitive. Only alphanumeric 29characters, `-` and `.` are allowed in section names. Each variable 30must belong to some section, which means that there must be a section 31header before the first setting of a variable. 32 33Sections can be further divided into subsections. To begin a subsection 34put its name in double quotes, separated by space from the section name, 35in the section header, like in the example below: 36 37-------- 38 [section "subsection"] 39 40-------- 41 42Subsection names are case sensitive and can contain any characters except 43newline (doublequote `"` and backslash have to be escaped as `\"` and `\\`, 44respectively). Section headers cannot span multiple 45lines. Variables may belong directly to a section or to a given subsection. 46You can have `[section]` if you have `[section "subsection"]`, but you 47don't need to. 48 49There is also a deprecated `[section.subsection]` syntax. With this 50syntax, the subsection name is converted to lower-case and is also 51compared case sensitively. These subsection names follow the same 52restrictions as section names. 53 54All the other lines (and the remainder of the line after the section 55header) are recognized as setting variables, in the form 56'name = value'. If there is no equal sign on the line, the entire line 57is taken as 'name' and the variable is recognized as boolean "true". 58The variable names are case-insensitive, allow only alphanumeric characters 59and `-`, and must start with an alphabetic character. There can be more 60than one value for a given variable; we say then that the variable is 61multivalued. 62 63Leading and trailing whitespace in a variable value is discarded. 64Internal whitespace within a variable value is retained verbatim. 65 66The values following the equals sign in variable assign are all either 67a string, an integer, or a boolean. Boolean values may be given as yes/no, 681/0, true/false or on/off. Case is not significant in boolean values, when 69converting value to the canonical form using '--bool' type specifier; 70'git config' will ensure that the output is "true" or "false". 71 72String values may be entirely or partially enclosed in double quotes. 73You need to enclose variable values in double quotes if you want to 74preserve leading or trailing whitespace, or if the variable value contains 75comment characters (i.e. it contains '#' or ';'). 76Double quote `"` and backslash `\` characters in variable values must 77be escaped: use `\"` for `"` and `\\` for `\`. 78 79The following escape sequences (beside `\"` and `\\`) are recognized: 80`\n` for newline character (NL), `\t` for horizontal tabulation (HT, TAB) 81and `\b` for backspace (BS). No other char escape sequence, nor octal 82char sequences are valid. 83 84Variable values ending in a `\` are continued on the next line in the 85customary UNIX fashion. 86 87Some variables may require a special value format. 88 89Includes 90~~~~~~~~ 91 92You can include one config file from another by setting the special 93`include.path` variable to the name of the file to be included. The 94included file is expanded immediately, as if its contents had been 95found at the location of the include directive. If the value of the 96`include.path` variable is a relative path, the path is considered to be 97relative to the configuration file in which the include directive was 98found. The value of `include.path` is subject to tilde expansion: `~/` 99is expanded to the value of `$HOME`, and `~user/` to the specified 100user's home directory. See below for examples. 101 102Example 103~~~~~~~ 104 105 # Core variables 106 [core] 107 ; Don't trust file modes 108 filemode = false 109 110 # Our diff algorithm 111 [diff] 112 external = /usr/local/bin/diff-wrapper 113 renames = true 114 115 [branch "devel"] 116 remote = origin 117 merge = refs/heads/devel 118 119 # Proxy settings 120 [core] 121 gitProxy="ssh" for "kernel.org" 122 gitProxy=default-proxy ; for the rest 123 124 [include] 125 path = /path/to/foo.inc ; include by absolute path 126 path = foo ; expand "foo" relative to the current file 127 path = ~/foo ; expand "foo" in your $HOME directory 128 129Variables 130~~~~~~~~~ 131 132Note that this list is non-comprehensive and not necessarily complete. 133For command-specific variables, you will find a more detailed description 134in the appropriate manual page. You will find a description of non-core 135porcelain configuration variables in the respective porcelain documentation. 136 137advice.*:: 138 These variables control various optional help messages designed to 139 aid new users. All 'advice.*' variables default to 'true', and you 140 can tell Git that you do not need help by setting these to 'false': 141+ 142-- 143 pushUpdateRejected:: 144 Set this variable to 'false' if you want to disable 145 'pushNonFFCurrent', 'pushNonFFDefault', 146 'pushNonFFMatching', 'pushAlreadyExists', 147 'pushFetchFirst', and 'pushNeedsForce' 148 simultaneously. 149 pushNonFFCurrent:: 150 Advice shown when linkgit:git-push[1] fails due to a 151 non-fast-forward update to the current branch. 152 pushNonFFDefault:: 153 Advice to set 'push.default' to 'upstream' or 'current' 154 when you ran linkgit:git-push[1] and pushed 'matching 155 refs' by default (i.e. you did not provide an explicit 156 refspec, and no 'push.default' configuration was set) 157 and it resulted in a non-fast-forward error. 158 pushNonFFMatching:: 159 Advice shown when you ran linkgit:git-push[1] and pushed 160 'matching refs' explicitly (i.e. you used ':', or 161 specified a refspec that isn't your current branch) and 162 it resulted in a non-fast-forward error. 163 pushAlreadyExists:: 164 Shown when linkgit:git-push[1] rejects an update that 165 does not qualify for fast-forwarding (e.g., a tag.) 166 pushFetchFirst:: 167 Shown when linkgit:git-push[1] rejects an update that 168 tries to overwrite a remote ref that points at an 169 object we do not have. 170 pushNeedsForce:: 171 Shown when linkgit:git-push[1] rejects an update that 172 tries to overwrite a remote ref that points at an 173 object that is not a committish, or make the remote 174 ref point at an object that is not a committish. 175 statusHints:: 176 Show directions on how to proceed from the current 177 state in the output of linkgit:git-status[1] and in 178 the template shown when writing commit messages in 179 linkgit:git-commit[1]. 180 commitBeforeMerge:: 181 Advice shown when linkgit:git-merge[1] refuses to 182 merge to avoid overwriting local changes. 183 resolveConflict:: 184 Advices shown by various commands when conflicts 185 prevent the operation from being performed. 186 implicitIdentity:: 187 Advice on how to set your identity configuration when 188 your information is guessed from the system username and 189 domain name. 190 detachedHead:: 191 Advice shown when you used linkgit:git-checkout[1] to 192 move to the detach HEAD state, to instruct how to create 193 a local branch after the fact. 194 amWorkDir:: 195 Advice that shows the location of the patch file when 196 linkgit:git-am[1] fails to apply it. 197-- 198 199core.fileMode:: 200 If false, the executable bit differences between the index and 201 the working tree are ignored; useful on broken filesystems like FAT. 202 See linkgit:git-update-index[1]. 203+ 204The default is true, except linkgit:git-clone[1] or linkgit:git-init[1] 205will probe and set core.fileMode false if appropriate when the 206repository is created. 207 208core.ignoreCygwinFSTricks:: 209 This option is only used by Cygwin implementation of Git. If false, 210 the Cygwin stat() and lstat() functions are used. This may be useful 211 if your repository consists of a few separate directories joined in 212 one hierarchy using Cygwin mount. If true, Git uses native Win32 API 213 whenever it is possible and falls back to Cygwin functions only to 214 handle symbol links. The native mode is more than twice faster than 215 normal Cygwin l/stat() functions. True by default, unless core.filemode 216 is true, in which case ignoreCygwinFSTricks is ignored as Cygwin's 217 POSIX emulation is required to support core.filemode. 218 219core.ignorecase:: 220 If true, this option enables various workarounds to enable 221 git to work better on filesystems that are not case sensitive, 222 like FAT. For example, if a directory listing finds 223 "makefile" when git expects "Makefile", git will assume 224 it is really the same file, and continue to remember it as 225 "Makefile". 226+ 227The default is false, except linkgit:git-clone[1] or linkgit:git-init[1] 228will probe and set core.ignorecase true if appropriate when the repository 229is created. 230 231core.precomposeunicode:: 232 This option is only used by Mac OS implementation of git. 233 When core.precomposeunicode=true, git reverts the unicode decomposition 234 of filenames done by Mac OS. This is useful when sharing a repository 235 between Mac OS and Linux or Windows. 236 (Git for Windows 1.7.10 or higher is needed, or git under cygwin 1.7). 237 When false, file names are handled fully transparent by git, 238 which is backward compatible with older versions of git. 239 240core.trustctime:: 241 If false, the ctime differences between the index and the 242 working tree are ignored; useful when the inode change time 243 is regularly modified by something outside Git (file system 244 crawlers and some backup systems). 245 See linkgit:git-update-index[1]. True by default. 246 247core.quotepath:: 248 The commands that output paths (e.g. 'ls-files', 249 'diff'), when not given the `-z` option, will quote 250 "unusual" characters in the pathname by enclosing the 251 pathname in a double-quote pair and with backslashes the 252 same way strings in C source code are quoted. If this 253 variable is set to false, the bytes higher than 0x80 are 254 not quoted but output as verbatim. Note that double 255 quote, backslash and control characters are always 256 quoted without `-z` regardless of the setting of this 257 variable. 258 259core.eol:: 260 Sets the line ending type to use in the working directory for 261 files that have the `text` property set. Alternatives are 262 'lf', 'crlf' and 'native', which uses the platform's native 263 line ending. The default value is `native`. See 264 linkgit:gitattributes[5] for more information on end-of-line 265 conversion. 266 267core.safecrlf:: 268 If true, makes git check if converting `CRLF` is reversible when 269 end-of-line conversion is active. Git will verify if a command 270 modifies a file in the work tree either directly or indirectly. 271 For example, committing a file followed by checking out the 272 same file should yield the original file in the work tree. If 273 this is not the case for the current setting of 274 `core.autocrlf`, git will reject the file. The variable can 275 be set to "warn", in which case git will only warn about an 276 irreversible conversion but continue the operation. 277+ 278CRLF conversion bears a slight chance of corrupting data. 279When it is enabled, git will convert CRLF to LF during commit and LF to 280CRLF during checkout. A file that contains a mixture of LF and 281CRLF before the commit cannot be recreated by git. For text 282files this is the right thing to do: it corrects line endings 283such that we have only LF line endings in the repository. 284But for binary files that are accidentally classified as text the 285conversion can corrupt data. 286+ 287If you recognize such corruption early you can easily fix it by 288setting the conversion type explicitly in .gitattributes. Right 289after committing you still have the original file in your work 290tree and this file is not yet corrupted. You can explicitly tell 291git that this file is binary and git will handle the file 292appropriately. 293+ 294Unfortunately, the desired effect of cleaning up text files with 295mixed line endings and the undesired effect of corrupting binary 296files cannot be distinguished. In both cases CRLFs are removed 297in an irreversible way. For text files this is the right thing 298to do because CRLFs are line endings, while for binary files 299converting CRLFs corrupts data. 300+ 301Note, this safety check does not mean that a checkout will generate a 302file identical to the original file for a different setting of 303`core.eol` and `core.autocrlf`, but only for the current one. For 304example, a text file with `LF` would be accepted with `core.eol=lf` 305and could later be checked out with `core.eol=crlf`, in which case the 306resulting file would contain `CRLF`, although the original file 307contained `LF`. However, in both work trees the line endings would be 308consistent, that is either all `LF` or all `CRLF`, but never mixed. A 309file with mixed line endings would be reported by the `core.safecrlf` 310mechanism. 311 312core.autocrlf:: 313 Setting this variable to "true" is almost the same as setting 314 the `text` attribute to "auto" on all files except that text 315 files are not guaranteed to be normalized: files that contain 316 `CRLF` in the repository will not be touched. Use this 317 setting if you want to have `CRLF` line endings in your 318 working directory even though the repository does not have 319 normalized line endings. This variable can be set to 'input', 320 in which case no output conversion is performed. 321 322core.symlinks:: 323 If false, symbolic links are checked out as small plain files that 324 contain the link text. linkgit:git-update-index[1] and 325 linkgit:git-add[1] will not change the recorded type to regular 326 file. Useful on filesystems like FAT that do not support 327 symbolic links. 328+ 329The default is true, except linkgit:git-clone[1] or linkgit:git-init[1] 330will probe and set core.symlinks false if appropriate when the repository 331is created. 332 333core.gitProxy:: 334 A "proxy command" to execute (as 'command host port') instead 335 of establishing direct connection to the remote server when 336 using the git protocol for fetching. If the variable value is 337 in the "COMMAND for DOMAIN" format, the command is applied only 338 on hostnames ending with the specified domain string. This variable 339 may be set multiple times and is matched in the given order; 340 the first match wins. 341+ 342Can be overridden by the 'GIT_PROXY_COMMAND' environment variable 343(which always applies universally, without the special "for" 344handling). 345+ 346The special string `none` can be used as the proxy command to 347specify that no proxy be used for a given domain pattern. 348This is useful for excluding servers inside a firewall from 349proxy use, while defaulting to a common proxy for external domains. 350 351core.ignoreStat:: 352 If true, commands which modify both the working tree and the index 353 will mark the updated paths with the "assume unchanged" bit in the 354 index. These marked files are then assumed to stay unchanged in the 355 working tree, until you mark them otherwise manually - Git will not 356 detect the file changes by lstat() calls. This is useful on systems 357 where those are very slow, such as Microsoft Windows. 358 See linkgit:git-update-index[1]. 359 False by default. 360 361core.preferSymlinkRefs:: 362 Instead of the default "symref" format for HEAD 363 and other symbolic reference files, use symbolic links. 364 This is sometimes needed to work with old scripts that 365 expect HEAD to be a symbolic link. 366 367core.bare:: 368 If true this repository is assumed to be 'bare' and has no 369 working directory associated with it. If this is the case a 370 number of commands that require a working directory will be 371 disabled, such as linkgit:git-add[1] or linkgit:git-merge[1]. 372+ 373This setting is automatically guessed by linkgit:git-clone[1] or 374linkgit:git-init[1] when the repository was created. By default a 375repository that ends in "/.git" is assumed to be not bare (bare = 376false), while all other repositories are assumed to be bare (bare 377= true). 378 379core.worktree:: 380 Set the path to the root of the working tree. 381 This can be overridden by the GIT_WORK_TREE environment 382 variable and the '--work-tree' command line option. 383 The value can be an absolute path or relative to the path to 384 the .git directory, which is either specified by --git-dir 385 or GIT_DIR, or automatically discovered. 386 If --git-dir or GIT_DIR is specified but none of 387 --work-tree, GIT_WORK_TREE and core.worktree is specified, 388 the current working directory is regarded as the top level 389 of your working tree. 390+ 391Note that this variable is honored even when set in a configuration 392file in a ".git" subdirectory of a directory and its value differs 393from the latter directory (e.g. "/path/to/.git/config" has 394core.worktree set to "/different/path"), which is most likely a 395misconfiguration. Running git commands in the "/path/to" directory will 396still use "/different/path" as the root of the work tree and can cause 397confusion unless you know what you are doing (e.g. you are creating a 398read-only snapshot of the same index to a location different from the 399repository's usual working tree). 400 401core.logAllRefUpdates:: 402 Enable the reflog. Updates to a ref <ref> is logged to the file 403 "$GIT_DIR/logs/<ref>", by appending the new and old 404 SHA1, the date/time and the reason of the update, but 405 only when the file exists. If this configuration 406 variable is set to true, missing "$GIT_DIR/logs/<ref>" 407 file is automatically created for branch heads (i.e. under 408 refs/heads/), remote refs (i.e. under refs/remotes/), 409 note refs (i.e. under refs/notes/), and the symbolic ref HEAD. 410+ 411This information can be used to determine what commit 412was the tip of a branch "2 days ago". 413+ 414This value is true by default in a repository that has 415a working directory associated with it, and false by 416default in a bare repository. 417 418core.repositoryFormatVersion:: 419 Internal variable identifying the repository format and layout 420 version. 421 422core.sharedRepository:: 423 When 'group' (or 'true'), the repository is made shareable between 424 several users in a group (making sure all the files and objects are 425 group-writable). When 'all' (or 'world' or 'everybody'), the 426 repository will be readable by all users, additionally to being 427 group-shareable. When 'umask' (or 'false'), git will use permissions 428 reported by umask(2). When '0xxx', where '0xxx' is an octal number, 429 files in the repository will have this mode value. '0xxx' will override 430 user's umask value (whereas the other options will only override 431 requested parts of the user's umask value). Examples: '0660' will make 432 the repo read/write-able for the owner and group, but inaccessible to 433 others (equivalent to 'group' unless umask is e.g. '0022'). '0640' is a 434 repository that is group-readable but not group-writable. 435 See linkgit:git-init[1]. False by default. 436 437core.warnAmbiguousRefs:: 438 If true, git will warn you if the ref name you passed it is ambiguous 439 and might match multiple refs in the .git/refs/ tree. True by default. 440 441core.compression:: 442 An integer -1..9, indicating a default compression level. 443 -1 is the zlib default. 0 means no compression, 444 and 1..9 are various speed/size tradeoffs, 9 being slowest. 445 If set, this provides a default to other compression variables, 446 such as 'core.loosecompression' and 'pack.compression'. 447 448core.loosecompression:: 449 An integer -1..9, indicating the compression level for objects that 450 are not in a pack file. -1 is the zlib default. 0 means no 451 compression, and 1..9 are various speed/size tradeoffs, 9 being 452 slowest. If not set, defaults to core.compression. If that is 453 not set, defaults to 1 (best speed). 454 455core.packedGitWindowSize:: 456 Number of bytes of a pack file to map into memory in a 457 single mapping operation. Larger window sizes may allow 458 your system to process a smaller number of large pack files 459 more quickly. Smaller window sizes will negatively affect 460 performance due to increased calls to the operating system's 461 memory manager, but may improve performance when accessing 462 a large number of large pack files. 463+ 464Default is 1 MiB if NO_MMAP was set at compile time, otherwise 32 465MiB on 32 bit platforms and 1 GiB on 64 bit platforms. This should 466be reasonable for all users/operating systems. You probably do 467not need to adjust this value. 468+ 469Common unit suffixes of 'k', 'm', or 'g' are supported. 470 471core.packedGitLimit:: 472 Maximum number of bytes to map simultaneously into memory 473 from pack files. If Git needs to access more than this many 474 bytes at once to complete an operation it will unmap existing 475 regions to reclaim virtual address space within the process. 476+ 477Default is 256 MiB on 32 bit platforms and 8 GiB on 64 bit platforms. 478This should be reasonable for all users/operating systems, except on 479the largest projects. You probably do not need to adjust this value. 480+ 481Common unit suffixes of 'k', 'm', or 'g' are supported. 482 483core.deltaBaseCacheLimit:: 484 Maximum number of bytes to reserve for caching base objects 485 that may be referenced by multiple deltified objects. By storing the 486 entire decompressed base objects in a cache Git is able 487 to avoid unpacking and decompressing frequently used base 488 objects multiple times. 489+ 490Default is 16 MiB on all platforms. This should be reasonable 491for all users/operating systems, except on the largest projects. 492You probably do not need to adjust this value. 493+ 494Common unit suffixes of 'k', 'm', or 'g' are supported. 495 496core.bigFileThreshold:: 497 Files larger than this size are stored deflated, without 498 attempting delta compression. Storing large files without 499 delta compression avoids excessive memory usage, at the 500 slight expense of increased disk usage. 501+ 502Default is 512 MiB on all platforms. This should be reasonable 503for most projects as source code and other text files can still 504be delta compressed, but larger binary media files won't be. 505+ 506Common unit suffixes of 'k', 'm', or 'g' are supported. 507 508core.excludesfile:: 509 In addition to '.gitignore' (per-directory) and 510 '.git/info/exclude', git looks into this file for patterns 511 of files which are not meant to be tracked. "`~/`" is expanded 512 to the value of `$HOME` and "`~user/`" to the specified user's 513 home directory. Its default value is $XDG_CONFIG_HOME/git/ignore. 514 If $XDG_CONFIG_HOME is either not set or empty, $HOME/.config/git/ignore 515 is used instead. See linkgit:gitignore[5]. 516 517core.askpass:: 518 Some commands (e.g. svn and http interfaces) that interactively 519 ask for a password can be told to use an external program given 520 via the value of this variable. Can be overridden by the 'GIT_ASKPASS' 521 environment variable. If not set, fall back to the value of the 522 'SSH_ASKPASS' environment variable or, failing that, a simple password 523 prompt. The external program shall be given a suitable prompt as 524 command line argument and write the password on its STDOUT. 525 526core.attributesfile:: 527 In addition to '.gitattributes' (per-directory) and 528 '.git/info/attributes', git looks into this file for attributes 529 (see linkgit:gitattributes[5]). Path expansions are made the same 530 way as for `core.excludesfile`. Its default value is 531 $XDG_CONFIG_HOME/git/attributes. If $XDG_CONFIG_HOME is either not 532 set or empty, $HOME/.config/git/attributes is used instead. 533 534core.editor:: 535 Commands such as `commit` and `tag` that lets you edit 536 messages by launching an editor uses the value of this 537 variable when it is set, and the environment variable 538 `GIT_EDITOR` is not set. See linkgit:git-var[1]. 539 540sequence.editor:: 541 Text editor used by `git rebase -i` for editing the rebase insn file. 542 The value is meant to be interpreted by the shell when it is used. 543 It can be overridden by the `GIT_SEQUENCE_EDITOR` environment variable. 544 When not configured the default commit message editor is used instead. 545 546core.pager:: 547 The command that git will use to paginate output. Can 548 be overridden with the `GIT_PAGER` environment 549 variable. Note that git sets the `LESS` environment 550 variable to `FRSX` if it is unset when it runs the 551 pager. One can change these settings by setting the 552 `LESS` variable to some other value. Alternately, 553 these settings can be overridden on a project or 554 global basis by setting the `core.pager` option. 555 Setting `core.pager` has no effect on the `LESS` 556 environment variable behaviour above, so if you want 557 to override git's default settings this way, you need 558 to be explicit. For example, to disable the S option 559 in a backward compatible manner, set `core.pager` 560 to `less -+S`. This will be passed to the shell by 561 git, which will translate the final command to 562 `LESS=FRSX less -+S`. 563 564core.whitespace:: 565 A comma separated list of common whitespace problems to 566 notice. 'git diff' will use `color.diff.whitespace` to 567 highlight them, and 'git apply --whitespace=error' will 568 consider them as errors. You can prefix `-` to disable 569 any of them (e.g. `-trailing-space`): 570+ 571* `blank-at-eol` treats trailing whitespaces at the end of the line 572 as an error (enabled by default). 573* `space-before-tab` treats a space character that appears immediately 574 before a tab character in the initial indent part of the line as an 575 error (enabled by default). 576* `indent-with-non-tab` treats a line that is indented with space 577 characters instead of the equivalent tabs as an error (not enabled by 578 default). 579* `tab-in-indent` treats a tab character in the initial indent part of 580 the line as an error (not enabled by default). 581* `blank-at-eof` treats blank lines added at the end of file as an error 582 (enabled by default). 583* `trailing-space` is a short-hand to cover both `blank-at-eol` and 584 `blank-at-eof`. 585* `cr-at-eol` treats a carriage-return at the end of line as 586 part of the line terminator, i.e. with it, `trailing-space` 587 does not trigger if the character before such a carriage-return 588 is not a whitespace (not enabled by default). 589* `tabwidth=<n>` tells how many character positions a tab occupies; this 590 is relevant for `indent-with-non-tab` and when git fixes `tab-in-indent` 591 errors. The default tab width is 8. Allowed values are 1 to 63. 592 593core.fsyncobjectfiles:: 594 This boolean will enable 'fsync()' when writing object files. 595+ 596This is a total waste of time and effort on a filesystem that orders 597data writes properly, but can be useful for filesystems that do not use 598journalling (traditional UNIX filesystems) or that only journal metadata 599and not file contents (OS X's HFS+, or Linux ext3 with "data=writeback"). 600 601core.preloadindex:: 602 Enable parallel index preload for operations like 'git diff' 603+ 604This can speed up operations like 'git diff' and 'git status' especially 605on filesystems like NFS that have weak caching semantics and thus 606relatively high IO latencies. With this set to 'true', git will do the 607index comparison to the filesystem data in parallel, allowing 608overlapping IO's. 609 610core.createObject:: 611 You can set this to 'link', in which case a hardlink followed by 612 a delete of the source are used to make sure that object creation 613 will not overwrite existing objects. 614+ 615On some file system/operating system combinations, this is unreliable. 616Set this config setting to 'rename' there; However, This will remove the 617check that makes sure that existing object files will not get overwritten. 618 619core.notesRef:: 620 When showing commit messages, also show notes which are stored in 621 the given ref. The ref must be fully qualified. If the given 622 ref does not exist, it is not an error but means that no 623 notes should be printed. 624+ 625This setting defaults to "refs/notes/commits", and it can be overridden by 626the 'GIT_NOTES_REF' environment variable. See linkgit:git-notes[1]. 627 628core.sparseCheckout:: 629 Enable "sparse checkout" feature. See section "Sparse checkout" in 630 linkgit:git-read-tree[1] for more information. 631 632core.abbrev:: 633 Set the length object names are abbreviated to. If unspecified, 634 many commands abbreviate to 7 hexdigits, which may not be enough 635 for abbreviated object names to stay unique for sufficiently long 636 time. 637 638add.ignore-errors:: 639add.ignoreErrors:: 640 Tells 'git add' to continue adding files when some files cannot be 641 added due to indexing errors. Equivalent to the '--ignore-errors' 642 option of linkgit:git-add[1]. Older versions of git accept only 643 `add.ignore-errors`, which does not follow the usual naming 644 convention for configuration variables. Newer versions of git 645 honor `add.ignoreErrors` as well. 646 647alias.*:: 648 Command aliases for the linkgit:git[1] command wrapper - e.g. 649 after defining "alias.last = cat-file commit HEAD", the invocation 650 "git last" is equivalent to "git cat-file commit HEAD". To avoid 651 confusion and troubles with script usage, aliases that 652 hide existing git commands are ignored. Arguments are split by 653 spaces, the usual shell quoting and escaping is supported. 654 quote pair and a backslash can be used to quote them. 655+ 656If the alias expansion is prefixed with an exclamation point, 657it will be treated as a shell command. For example, defining 658"alias.new = !gitk --all --not ORIG_HEAD", the invocation 659"git new" is equivalent to running the shell command 660"gitk --all --not ORIG_HEAD". Note that shell commands will be 661executed from the top-level directory of a repository, which may 662not necessarily be the current directory. 663'GIT_PREFIX' is set as returned by running 'git rev-parse --show-prefix' 664from the original current directory. See linkgit:git-rev-parse[1]. 665 666am.keepcr:: 667 If true, git-am will call git-mailsplit for patches in mbox format 668 with parameter '--keep-cr'. In this case git-mailsplit will 669 not remove `\r` from lines ending with `\r\n`. Can be overridden 670 by giving '--no-keep-cr' from the command line. 671 See linkgit:git-am[1], linkgit:git-mailsplit[1]. 672 673apply.ignorewhitespace:: 674 When set to 'change', tells 'git apply' to ignore changes in 675 whitespace, in the same way as the '--ignore-space-change' 676 option. 677 When set to one of: no, none, never, false tells 'git apply' to 678 respect all whitespace differences. 679 See linkgit:git-apply[1]. 680 681apply.whitespace:: 682 Tells 'git apply' how to handle whitespaces, in the same way 683 as the '--whitespace' option. See linkgit:git-apply[1]. 684 685branch.autosetupmerge:: 686 Tells 'git branch' and 'git checkout' to set up new branches 687 so that linkgit:git-pull[1] will appropriately merge from the 688 starting point branch. Note that even if this option is not set, 689 this behavior can be chosen per-branch using the `--track` 690 and `--no-track` options. The valid settings are: `false` -- no 691 automatic setup is done; `true` -- automatic setup is done when the 692 starting point is a remote-tracking branch; `always` -- 693 automatic setup is done when the starting point is either a 694 local branch or remote-tracking 695 branch. This option defaults to true. 696 697branch.autosetuprebase:: 698 When a new branch is created with 'git branch' or 'git checkout' 699 that tracks another branch, this variable tells git to set 700 up pull to rebase instead of merge (see "branch.<name>.rebase"). 701 When `never`, rebase is never automatically set to true. 702 When `local`, rebase is set to true for tracked branches of 703 other local branches. 704 When `remote`, rebase is set to true for tracked branches of 705 remote-tracking branches. 706 When `always`, rebase will be set to true for all tracking 707 branches. 708 See "branch.autosetupmerge" for details on how to set up a 709 branch to track another branch. 710 This option defaults to never. 711 712branch.<name>.remote:: 713 When in branch <name>, it tells 'git fetch' and 'git push' which 714 remote to fetch from/push to. It defaults to `origin` if no remote is 715 configured. `origin` is also used if you are not on any branch. 716 717branch.<name>.merge:: 718 Defines, together with branch.<name>.remote, the upstream branch 719 for the given branch. It tells 'git fetch'/'git pull'/'git rebase' which 720 branch to merge and can also affect 'git push' (see push.default). 721 When in branch <name>, it tells 'git fetch' the default 722 refspec to be marked for merging in FETCH_HEAD. The value is 723 handled like the remote part of a refspec, and must match a 724 ref which is fetched from the remote given by 725 "branch.<name>.remote". 726 The merge information is used by 'git pull' (which at first calls 727 'git fetch') to lookup the default branch for merging. Without 728 this option, 'git pull' defaults to merge the first refspec fetched. 729 Specify multiple values to get an octopus merge. 730 If you wish to setup 'git pull' so that it merges into <name> from 731 another branch in the local repository, you can point 732 branch.<name>.merge to the desired branch, and use the special setting 733 `.` (a period) for branch.<name>.remote. 734 735branch.<name>.mergeoptions:: 736 Sets default options for merging into branch <name>. The syntax and 737 supported options are the same as those of linkgit:git-merge[1], but 738 option values containing whitespace characters are currently not 739 supported. 740 741branch.<name>.rebase:: 742 When true, rebase the branch <name> on top of the fetched branch, 743 instead of merging the default branch from the default remote when 744 "git pull" is run. See "pull.rebase" for doing this in a non 745 branch-specific manner. 746+ 747*NOTE*: this is a possibly dangerous operation; do *not* use 748it unless you understand the implications (see linkgit:git-rebase[1] 749for details). 750 751browser.<tool>.cmd:: 752 Specify the command to invoke the specified browser. The 753 specified command is evaluated in shell with the URLs passed 754 as arguments. (See linkgit:git-web{litdd}browse[1].) 755 756browser.<tool>.path:: 757 Override the path for the given tool that may be used to 758 browse HTML help (see '-w' option in linkgit:git-help[1]) or a 759 working repository in gitweb (see linkgit:git-instaweb[1]). 760 761clean.requireForce:: 762 A boolean to make git-clean do nothing unless given -f 763 or -n. Defaults to true. 764 765color.branch:: 766 A boolean to enable/disable color in the output of 767 linkgit:git-branch[1]. May be set to `always`, 768 `false` (or `never`) or `auto` (or `true`), in which case colors are used 769 only when the output is to a terminal. Defaults to false. 770 771color.branch.<slot>:: 772 Use customized color for branch coloration. `<slot>` is one of 773 `current` (the current branch), `local` (a local branch), 774 `remote` (a remote-tracking branch in refs/remotes/), `plain` (other 775 refs). 776+ 777The value for these configuration variables is a list of colors (at most 778two) and attributes (at most one), separated by spaces. The colors 779accepted are `normal`, `black`, `red`, `green`, `yellow`, `blue`, 780`magenta`, `cyan` and `white`; the attributes are `bold`, `dim`, `ul`, 781`blink` and `reverse`. The first color given is the foreground; the 782second is the background. The position of the attribute, if any, 783doesn't matter. 784 785color.diff:: 786 Whether to use ANSI escape sequences to add color to patches. 787 If this is set to `always`, linkgit:git-diff[1], 788 linkgit:git-log[1], and linkgit:git-show[1] will use color 789 for all patches. If it is set to `true` or `auto`, those 790 commands will only use color when output is to the terminal. 791 Defaults to false. 792+ 793This does not affect linkgit:git-format-patch[1] nor the 794'git-diff-{asterisk}' plumbing commands. Can be overridden on the 795command line with the `--color[=<when>]` option. 796 797color.diff.<slot>:: 798 Use customized color for diff colorization. `<slot>` specifies 799 which part of the patch to use the specified color, and is one 800 of `plain` (context text), `meta` (metainformation), `frag` 801 (hunk header), 'func' (function in hunk header), `old` (removed lines), 802 `new` (added lines), `commit` (commit headers), or `whitespace` 803 (highlighting whitespace errors). The values of these variables may be 804 specified as in color.branch.<slot>. 805 806color.decorate.<slot>:: 807 Use customized color for 'git log --decorate' output. `<slot>` is one 808 of `branch`, `remoteBranch`, `tag`, `stash` or `HEAD` for local 809 branches, remote-tracking branches, tags, stash and HEAD, respectively. 810 811color.grep:: 812 When set to `always`, always highlight matches. When `false` (or 813 `never`), never. When set to `true` or `auto`, use color only 814 when the output is written to the terminal. Defaults to `false`. 815 816color.grep.<slot>:: 817 Use customized color for grep colorization. `<slot>` specifies which 818 part of the line to use the specified color, and is one of 819+ 820-- 821`context`;; 822 non-matching text in context lines (when using `-A`, `-B`, or `-C`) 823`filename`;; 824 filename prefix (when not using `-h`) 825`function`;; 826 function name lines (when using `-p`) 827`linenumber`;; 828 line number prefix (when using `-n`) 829`match`;; 830 matching text 831`selected`;; 832 non-matching text in selected lines 833`separator`;; 834 separators between fields on a line (`:`, `-`, and `=`) 835 and between hunks (`--`) 836-- 837+ 838The values of these variables may be specified as in color.branch.<slot>. 839 840color.interactive:: 841 When set to `always`, always use colors for interactive prompts 842 and displays (such as those used by "git-add --interactive"). 843 When false (or `never`), never. When set to `true` or `auto`, use 844 colors only when the output is to the terminal. Defaults to false. 845 846color.interactive.<slot>:: 847 Use customized color for 'git add --interactive' 848 output. `<slot>` may be `prompt`, `header`, `help` or `error`, for 849 four distinct types of normal output from interactive 850 commands. The values of these variables may be specified as 851 in color.branch.<slot>. 852 853color.pager:: 854 A boolean to enable/disable colored output when the pager is in 855 use (default is true). 856 857color.showbranch:: 858 A boolean to enable/disable color in the output of 859 linkgit:git-show-branch[1]. May be set to `always`, 860 `false` (or `never`) or `auto` (or `true`), in which case colors are used 861 only when the output is to a terminal. Defaults to false. 862 863color.status:: 864 A boolean to enable/disable color in the output of 865 linkgit:git-status[1]. May be set to `always`, 866 `false` (or `never`) or `auto` (or `true`), in which case colors are used 867 only when the output is to a terminal. Defaults to false. 868 869color.status.<slot>:: 870 Use customized color for status colorization. `<slot>` is 871 one of `header` (the header text of the status message), 872 `added` or `updated` (files which are added but not committed), 873 `changed` (files which are changed but not added in the index), 874 `untracked` (files which are not tracked by git), 875 `branch` (the current branch), or 876 `nobranch` (the color the 'no branch' warning is shown in, defaulting 877 to red). The values of these variables may be specified as in 878 color.branch.<slot>. 879 880color.ui:: 881 This variable determines the default value for variables such 882 as `color.diff` and `color.grep` that control the use of color 883 per command family. Its scope will expand as more commands learn 884 configuration to set a default for the `--color` option. Set it 885 to `always` if you want all output not intended for machine 886 consumption to use color, to `true` or `auto` if you want such 887 output to use color when written to the terminal, or to `false` or 888 `never` if you prefer git commands not to use color unless enabled 889 explicitly with some other configuration or the `--color` option. 890 891column.ui:: 892 Specify whether supported commands should output in columns. 893 This variable consists of a list of tokens separated by spaces 894 or commas: 895+ 896-- 897`always`;; 898 always show in columns 899`never`;; 900 never show in columns 901`auto`;; 902 show in columns if the output is to the terminal 903`column`;; 904 fill columns before rows (default) 905`row`;; 906 fill rows before columns 907`plain`;; 908 show in one column 909`dense`;; 910 make unequal size columns to utilize more space 911`nodense`;; 912 make equal size columns 913-- 914+ 915This option defaults to 'never'. 916 917column.branch:: 918 Specify whether to output branch listing in `git branch` in columns. 919 See `column.ui` for details. 920 921column.status:: 922 Specify whether to output untracked files in `git status` in columns. 923 See `column.ui` for details. 924 925column.tag:: 926 Specify whether to output tag listing in `git tag` in columns. 927 See `column.ui` for details. 928 929commit.status:: 930 A boolean to enable/disable inclusion of status information in the 931 commit message template when using an editor to prepare the commit 932 message. Defaults to true. 933 934commit.template:: 935 Specify a file to use as the template for new commit messages. 936 "`~/`" is expanded to the value of `$HOME` and "`~user/`" to the 937 specified user's home directory. 938 939credential.helper:: 940 Specify an external helper to be called when a username or 941 password credential is needed; the helper may consult external 942 storage to avoid prompting the user for the credentials. See 943 linkgit:gitcredentials[7] for details. 944 945credential.useHttpPath:: 946 When acquiring credentials, consider the "path" component of an http 947 or https URL to be important. Defaults to false. See 948 linkgit:gitcredentials[7] for more information. 949 950credential.username:: 951 If no username is set for a network authentication, use this username 952 by default. See credential.<context>.* below, and 953 linkgit:gitcredentials[7]. 954 955credential.<url>.*:: 956 Any of the credential.* options above can be applied selectively to 957 some credentials. For example "credential.https://example.com.username" 958 would set the default username only for https connections to 959 example.com. See linkgit:gitcredentials[7] for details on how URLs are 960 matched. 961 962include::diff-config.txt[] 963 964difftool.<tool>.path:: 965 Override the path for the given tool. This is useful in case 966 your tool is not in the PATH. 967 968difftool.<tool>.cmd:: 969 Specify the command to invoke the specified diff tool. 970 The specified command is evaluated in shell with the following 971 variables available: 'LOCAL' is set to the name of the temporary 972 file containing the contents of the diff pre-image and 'REMOTE' 973 is set to the name of the temporary file containing the contents 974 of the diff post-image. 975 976difftool.prompt:: 977 Prompt before each invocation of the diff tool. 978 979diff.wordRegex:: 980 A POSIX Extended Regular Expression used to determine what is a "word" 981 when performing word-by-word difference calculations. Character 982 sequences that match the regular expression are "words", all other 983 characters are *ignorable* whitespace. 984 985fetch.recurseSubmodules:: 986 This option can be either set to a boolean value or to 'on-demand'. 987 Setting it to a boolean changes the behavior of fetch and pull to 988 unconditionally recurse into submodules when set to true or to not 989 recurse at all when set to false. When set to 'on-demand' (the default 990 value), fetch and pull will only recurse into a populated submodule 991 when its superproject retrieves a commit that updates the submodule's 992 reference. 993 994fetch.fsckObjects:: 995 If it is set to true, git-fetch-pack will check all fetched 996 objects. It will abort in the case of a malformed object or a 997 broken link. The result of an abort are only dangling objects. 998 Defaults to false. If not set, the value of `transfer.fsckObjects` 999 is used instead.10001001fetch.unpackLimit::1002 If the number of objects fetched over the git native1003 transfer is below this1004 limit, then the objects will be unpacked into loose object1005 files. However if the number of received objects equals or1006 exceeds this limit then the received pack will be stored as1007 a pack, after adding any missing delta bases. Storing the1008 pack from a push can make the push operation complete faster,1009 especially on slow filesystems. If not set, the value of1010 `transfer.unpackLimit` is used instead.10111012format.attach::1013 Enable multipart/mixed attachments as the default for1014 'format-patch'. The value can also be a double quoted string1015 which will enable attachments as the default and set the1016 value as the boundary. See the --attach option in1017 linkgit:git-format-patch[1].10181019format.numbered::1020 A boolean which can enable or disable sequence numbers in patch1021 subjects. It defaults to "auto" which enables it only if there1022 is more than one patch. It can be enabled or disabled for all1023 messages by setting it to "true" or "false". See --numbered1024 option in linkgit:git-format-patch[1].10251026format.headers::1027 Additional email headers to include in a patch to be submitted1028 by mail. See linkgit:git-format-patch[1].10291030format.to::1031format.cc::1032 Additional recipients to include in a patch to be submitted1033 by mail. See the --to and --cc options in1034 linkgit:git-format-patch[1].10351036format.subjectprefix::1037 The default for format-patch is to output files with the '[PATCH]'1038 subject prefix. Use this variable to change that prefix.10391040format.signature::1041 The default for format-patch is to output a signature containing1042 the git version number. Use this variable to change that default.1043 Set this variable to the empty string ("") to suppress1044 signature generation.10451046format.suffix::1047 The default for format-patch is to output files with the suffix1048 `.patch`. Use this variable to change that suffix (make sure to1049 include the dot if you want it).10501051format.pretty::1052 The default pretty format for log/show/whatchanged command,1053 See linkgit:git-log[1], linkgit:git-show[1],1054 linkgit:git-whatchanged[1].10551056format.thread::1057 The default threading style for 'git format-patch'. Can be1058 a boolean value, or `shallow` or `deep`. `shallow` threading1059 makes every mail a reply to the head of the series,1060 where the head is chosen from the cover letter, the1061 `--in-reply-to`, and the first patch mail, in this order.1062 `deep` threading makes every mail a reply to the previous one.1063 A true boolean value is the same as `shallow`, and a false1064 value disables threading.10651066format.signoff::1067 A boolean value which lets you enable the `-s/--signoff` option of1068 format-patch by default. *Note:* Adding the Signed-off-by: line to a1069 patch should be a conscious act and means that you certify you have1070 the rights to submit this work under the same open source license.1071 Please see the 'SubmittingPatches' document for further discussion.10721073filter.<driver>.clean::1074 The command which is used to convert the content of a worktree1075 file to a blob upon checkin. See linkgit:gitattributes[5] for1076 details.10771078filter.<driver>.smudge::1079 The command which is used to convert the content of a blob1080 object to a worktree file upon checkout. See1081 linkgit:gitattributes[5] for details.10821083gc.aggressiveWindow::1084 The window size parameter used in the delta compression1085 algorithm used by 'git gc --aggressive'. This defaults1086 to 250.10871088gc.auto::1089 When there are approximately more than this many loose1090 objects in the repository, `git gc --auto` will pack them.1091 Some Porcelain commands use this command to perform a1092 light-weight garbage collection from time to time. The1093 default value is 6700. Setting this to 0 disables it.10941095gc.autopacklimit::1096 When there are more than this many packs that are not1097 marked with `*.keep` file in the repository, `git gc1098 --auto` consolidates them into one larger pack. The1099 default value is 50. Setting this to 0 disables it.11001101gc.packrefs::1102 Running `git pack-refs` in a repository renders it1103 unclonable by Git versions prior to 1.5.1.2 over dumb1104 transports such as HTTP. This variable determines whether1105 'git gc' runs `git pack-refs`. This can be set to `notbare`1106 to enable it within all non-bare repos or it can be set to a1107 boolean value. The default is `true`.11081109gc.pruneexpire::1110 When 'git gc' is run, it will call 'prune --expire 2.weeks.ago'.1111 Override the grace period with this config variable. The value1112 "now" may be used to disable this grace period and always prune1113 unreachable objects immediately.11141115gc.reflogexpire::1116gc.<pattern>.reflogexpire::1117 'git reflog expire' removes reflog entries older than1118 this time; defaults to 90 days. With "<pattern>" (e.g.1119 "refs/stash") in the middle the setting applies only to1120 the refs that match the <pattern>.11211122gc.reflogexpireunreachable::1123gc.<ref>.reflogexpireunreachable::1124 'git reflog expire' removes reflog entries older than1125 this time and are not reachable from the current tip;1126 defaults to 30 days. With "<pattern>" (e.g. "refs/stash")1127 in the middle, the setting applies only to the refs that1128 match the <pattern>.11291130gc.rerereresolved::1131 Records of conflicted merge you resolved earlier are1132 kept for this many days when 'git rerere gc' is run.1133 The default is 60 days. See linkgit:git-rerere[1].11341135gc.rerereunresolved::1136 Records of conflicted merge you have not resolved are1137 kept for this many days when 'git rerere gc' is run.1138 The default is 15 days. See linkgit:git-rerere[1].11391140gitcvs.commitmsgannotation::1141 Append this string to each commit message. Set to empty string1142 to disable this feature. Defaults to "via git-CVS emulator".11431144gitcvs.enabled::1145 Whether the CVS server interface is enabled for this repository.1146 See linkgit:git-cvsserver[1].11471148gitcvs.logfile::1149 Path to a log file where the CVS server interface well... logs1150 various stuff. See linkgit:git-cvsserver[1].11511152gitcvs.usecrlfattr::1153 If true, the server will look up the end-of-line conversion1154 attributes for files to determine the '-k' modes to use. If1155 the attributes force git to treat a file as text,1156 the '-k' mode will be left blank so CVS clients will1157 treat it as text. If they suppress text conversion, the file1158 will be set with '-kb' mode, which suppresses any newline munging1159 the client might otherwise do. If the attributes do not allow1160 the file type to be determined, then 'gitcvs.allbinary' is1161 used. See linkgit:gitattributes[5].11621163gitcvs.allbinary::1164 This is used if 'gitcvs.usecrlfattr' does not resolve1165 the correct '-kb' mode to use. If true, all1166 unresolved files are sent to the client in1167 mode '-kb'. This causes the client to treat them1168 as binary files, which suppresses any newline munging it1169 otherwise might do. Alternatively, if it is set to "guess",1170 then the contents of the file are examined to decide if1171 it is binary, similar to 'core.autocrlf'.11721173gitcvs.dbname::1174 Database used by git-cvsserver to cache revision information1175 derived from the git repository. The exact meaning depends on the1176 used database driver, for SQLite (which is the default driver) this1177 is a filename. Supports variable substitution (see1178 linkgit:git-cvsserver[1] for details). May not contain semicolons (`;`).1179 Default: '%Ggitcvs.%m.sqlite'11801181gitcvs.dbdriver::1182 Used Perl DBI driver. You can specify any available driver1183 for this here, but it might not work. git-cvsserver is tested1184 with 'DBD::SQLite', reported to work with 'DBD::Pg', and1185 reported *not* to work with 'DBD::mysql'. Experimental feature.1186 May not contain double colons (`:`). Default: 'SQLite'.1187 See linkgit:git-cvsserver[1].11881189gitcvs.dbuser, gitcvs.dbpass::1190 Database user and password. Only useful if setting 'gitcvs.dbdriver',1191 since SQLite has no concept of database users and/or passwords.1192 'gitcvs.dbuser' supports variable substitution (see1193 linkgit:git-cvsserver[1] for details).11941195gitcvs.dbTableNamePrefix::1196 Database table name prefix. Prepended to the names of any1197 database tables used, allowing a single database to be used1198 for several repositories. Supports variable substitution (see1199 linkgit:git-cvsserver[1] for details). Any non-alphabetic1200 characters will be replaced with underscores.12011202All gitcvs variables except for 'gitcvs.usecrlfattr' and1203'gitcvs.allbinary' can also be specified as1204'gitcvs.<access_method>.<varname>' (where 'access_method'1205is one of "ext" and "pserver") to make them apply only for the given1206access method.12071208gitweb.category::1209gitweb.description::1210gitweb.owner::1211gitweb.url::1212 See linkgit:gitweb[1] for description.12131214gitweb.avatar::1215gitweb.blame::1216gitweb.grep::1217gitweb.highlight::1218gitweb.patches::1219gitweb.pickaxe::1220gitweb.remote_heads::1221gitweb.showsizes::1222gitweb.snapshot::1223 See linkgit:gitweb.conf[5] for description.12241225grep.lineNumber::1226 If set to true, enable '-n' option by default.12271228grep.patternType::1229 Set the default matching behavior. Using a value of 'basic', 'extended',1230 'fixed', or 'perl' will enable the '--basic-regexp', '--extended-regexp',1231 '--fixed-strings', or '--perl-regexp' option accordingly, while the1232 value 'default' will return to the default matching behavior.12331234grep.extendedRegexp::1235 If set to true, enable '--extended-regexp' option by default. This1236 option is ignored when the 'grep.patternType' option is set to a value1237 other than 'default'.12381239gpg.program::1240 Use this custom program instead of "gpg" found on $PATH when1241 making or verifying a PGP signature. The program must support the1242 same command line interface as GPG, namely, to verify a detached1243 signature, "gpg --verify $file - <$signature" is run, and the1244 program is expected to signal a good signature by exiting with1245 code 0, and to generate an ascii-armored detached signature, the1246 standard input of "gpg -bsau $key" is fed with the contents to be1247 signed, and the program is expected to send the result to its1248 standard output.12491250gui.commitmsgwidth::1251 Defines how wide the commit message window is in the1252 linkgit:git-gui[1]. "75" is the default.12531254gui.diffcontext::1255 Specifies how many context lines should be used in calls to diff1256 made by the linkgit:git-gui[1]. The default is "5".12571258gui.encoding::1259 Specifies the default encoding to use for displaying of1260 file contents in linkgit:git-gui[1] and linkgit:gitk[1].1261 It can be overridden by setting the 'encoding' attribute1262 for relevant files (see linkgit:gitattributes[5]).1263 If this option is not set, the tools default to the1264 locale encoding.12651266gui.matchtrackingbranch::1267 Determines if new branches created with linkgit:git-gui[1] should1268 default to tracking remote branches with matching names or1269 not. Default: "false".12701271gui.newbranchtemplate::1272 Is used as suggested name when creating new branches using the1273 linkgit:git-gui[1].12741275gui.pruneduringfetch::1276 "true" if linkgit:git-gui[1] should prune remote-tracking branches when1277 performing a fetch. The default value is "false".12781279gui.trustmtime::1280 Determines if linkgit:git-gui[1] should trust the file modification1281 timestamp or not. By default the timestamps are not trusted.12821283gui.spellingdictionary::1284 Specifies the dictionary used for spell checking commit messages in1285 the linkgit:git-gui[1]. When set to "none" spell checking is turned1286 off.12871288gui.fastcopyblame::1289 If true, 'git gui blame' uses `-C` instead of `-C -C` for original1290 location detection. It makes blame significantly faster on huge1291 repositories at the expense of less thorough copy detection.12921293gui.copyblamethreshold::1294 Specifies the threshold to use in 'git gui blame' original location1295 detection, measured in alphanumeric characters. See the1296 linkgit:git-blame[1] manual for more information on copy detection.12971298gui.blamehistoryctx::1299 Specifies the radius of history context in days to show in1300 linkgit:gitk[1] for the selected commit, when the `Show History1301 Context` menu item is invoked from 'git gui blame'. If this1302 variable is set to zero, the whole history is shown.13031304guitool.<name>.cmd::1305 Specifies the shell command line to execute when the corresponding item1306 of the linkgit:git-gui[1] `Tools` menu is invoked. This option is1307 mandatory for every tool. The command is executed from the root of1308 the working directory, and in the environment it receives the name of1309 the tool as 'GIT_GUITOOL', the name of the currently selected file as1310 'FILENAME', and the name of the current branch as 'CUR_BRANCH' (if1311 the head is detached, 'CUR_BRANCH' is empty).13121313guitool.<name>.needsfile::1314 Run the tool only if a diff is selected in the GUI. It guarantees1315 that 'FILENAME' is not empty.13161317guitool.<name>.noconsole::1318 Run the command silently, without creating a window to display its1319 output.13201321guitool.<name>.norescan::1322 Don't rescan the working directory for changes after the tool1323 finishes execution.13241325guitool.<name>.confirm::1326 Show a confirmation dialog before actually running the tool.13271328guitool.<name>.argprompt::1329 Request a string argument from the user, and pass it to the tool1330 through the 'ARGS' environment variable. Since requesting an1331 argument implies confirmation, the 'confirm' option has no effect1332 if this is enabled. If the option is set to 'true', 'yes', or '1',1333 the dialog uses a built-in generic prompt; otherwise the exact1334 value of the variable is used.13351336guitool.<name>.revprompt::1337 Request a single valid revision from the user, and set the1338 'REVISION' environment variable. In other aspects this option1339 is similar to 'argprompt', and can be used together with it.13401341guitool.<name>.revunmerged::1342 Show only unmerged branches in the 'revprompt' subdialog.1343 This is useful for tools similar to merge or rebase, but not1344 for things like checkout or reset.13451346guitool.<name>.title::1347 Specifies the title to use for the prompt dialog. The default1348 is the tool name.13491350guitool.<name>.prompt::1351 Specifies the general prompt string to display at the top of1352 the dialog, before subsections for 'argprompt' and 'revprompt'.1353 The default value includes the actual command.13541355help.browser::1356 Specify the browser that will be used to display help in the1357 'web' format. See linkgit:git-help[1].13581359help.format::1360 Override the default help format used by linkgit:git-help[1].1361 Values 'man', 'info', 'web' and 'html' are supported. 'man' is1362 the default. 'web' and 'html' are the same.13631364help.autocorrect::1365 Automatically correct and execute mistyped commands after1366 waiting for the given number of deciseconds (0.1 sec). If more1367 than one command can be deduced from the entered text, nothing1368 will be executed. If the value of this option is negative,1369 the corrected command will be executed immediately. If the1370 value is 0 - the command will be just shown but not executed.1371 This is the default.13721373http.proxy::1374 Override the HTTP proxy, normally configured using the 'http_proxy',1375 'https_proxy', and 'all_proxy' environment variables (see1376 `curl(1)`). This can be overridden on a per-remote basis; see1377 remote.<name>.proxy13781379http.cookiefile::1380 File containing previously stored cookie lines which should be used1381 in the git http session, if they match the server. The file format1382 of the file to read cookies from should be plain HTTP headers or1383 the Netscape/Mozilla cookie file format (see linkgit:curl[1]).1384 NOTE that the file specified with http.cookiefile is only used as1385 input. No cookies will be stored in the file.13861387http.sslVerify::1388 Whether to verify the SSL certificate when fetching or pushing1389 over HTTPS. Can be overridden by the 'GIT_SSL_NO_VERIFY' environment1390 variable.13911392http.sslCert::1393 File containing the SSL certificate when fetching or pushing1394 over HTTPS. Can be overridden by the 'GIT_SSL_CERT' environment1395 variable.13961397http.sslKey::1398 File containing the SSL private key when fetching or pushing1399 over HTTPS. Can be overridden by the 'GIT_SSL_KEY' environment1400 variable.14011402http.sslCertPasswordProtected::1403 Enable git's password prompt for the SSL certificate. Otherwise1404 OpenSSL will prompt the user, possibly many times, if the1405 certificate or private key is encrypted. Can be overridden by the1406 'GIT_SSL_CERT_PASSWORD_PROTECTED' environment variable.14071408http.sslCAInfo::1409 File containing the certificates to verify the peer with when1410 fetching or pushing over HTTPS. Can be overridden by the1411 'GIT_SSL_CAINFO' environment variable.14121413http.sslCAPath::1414 Path containing files with the CA certificates to verify the peer1415 with when fetching or pushing over HTTPS. Can be overridden1416 by the 'GIT_SSL_CAPATH' environment variable.14171418http.maxRequests::1419 How many HTTP requests to launch in parallel. Can be overridden1420 by the 'GIT_HTTP_MAX_REQUESTS' environment variable. Default is 5.14211422http.minSessions::1423 The number of curl sessions (counted across slots) to be kept across1424 requests. They will not be ended with curl_easy_cleanup() until1425 http_cleanup() is invoked. If USE_CURL_MULTI is not defined, this1426 value will be capped at 1. Defaults to 1.14271428http.postBuffer::1429 Maximum size in bytes of the buffer used by smart HTTP1430 transports when POSTing data to the remote system.1431 For requests larger than this buffer size, HTTP/1.1 and1432 Transfer-Encoding: chunked is used to avoid creating a1433 massive pack file locally. Default is 1 MiB, which is1434 sufficient for most requests.14351436http.lowSpeedLimit, http.lowSpeedTime::1437 If the HTTP transfer speed is less than 'http.lowSpeedLimit'1438 for longer than 'http.lowSpeedTime' seconds, the transfer is aborted.1439 Can be overridden by the 'GIT_HTTP_LOW_SPEED_LIMIT' and1440 'GIT_HTTP_LOW_SPEED_TIME' environment variables.14411442http.noEPSV::1443 A boolean which disables using of EPSV ftp command by curl.1444 This can helpful with some "poor" ftp servers which don't1445 support EPSV mode. Can be overridden by the 'GIT_CURL_FTP_NO_EPSV'1446 environment variable. Default is false (curl will use EPSV).14471448http.useragent::1449 The HTTP USER_AGENT string presented to an HTTP server. The default1450 value represents the version of the client git such as git/1.7.1.1451 This option allows you to override this value to a more common value1452 such as Mozilla/4.0. This may be necessary, for instance, if1453 connecting through a firewall that restricts HTTP connections to a set1454 of common USER_AGENT strings (but not including those like git/1.7.1).1455 Can be overridden by the 'GIT_HTTP_USER_AGENT' environment variable.14561457i18n.commitEncoding::1458 Character encoding the commit messages are stored in; git itself1459 does not care per se, but this information is necessary e.g. when1460 importing commits from emails or in the gitk graphical history1461 browser (and possibly at other places in the future or in other1462 porcelains). See e.g. linkgit:git-mailinfo[1]. Defaults to 'utf-8'.14631464i18n.logOutputEncoding::1465 Character encoding the commit messages are converted to when1466 running 'git log' and friends.14671468imap::1469 The configuration variables in the 'imap' section are described1470 in linkgit:git-imap-send[1].14711472init.templatedir::1473 Specify the directory from which templates will be copied.1474 (See the "TEMPLATE DIRECTORY" section of linkgit:git-init[1].)14751476instaweb.browser::1477 Specify the program that will be used to browse your working1478 repository in gitweb. See linkgit:git-instaweb[1].14791480instaweb.httpd::1481 The HTTP daemon command-line to start gitweb on your working1482 repository. See linkgit:git-instaweb[1].14831484instaweb.local::1485 If true the web server started by linkgit:git-instaweb[1] will1486 be bound to the local IP (127.0.0.1).14871488instaweb.modulepath::1489 The default module path for linkgit:git-instaweb[1] to use1490 instead of /usr/lib/apache2/modules. Only used if httpd1491 is Apache.14921493instaweb.port::1494 The port number to bind the gitweb httpd to. See1495 linkgit:git-instaweb[1].14961497interactive.singlekey::1498 In interactive commands, allow the user to provide one-letter1499 input with a single key (i.e., without hitting enter).1500 Currently this is used by the `--patch` mode of1501 linkgit:git-add[1], linkgit:git-checkout[1], linkgit:git-commit[1],1502 linkgit:git-reset[1], and linkgit:git-stash[1]. Note that this1503 setting is silently ignored if portable keystroke input1504 is not available.15051506log.abbrevCommit::1507 If true, makes linkgit:git-log[1], linkgit:git-show[1], and1508 linkgit:git-whatchanged[1] assume `--abbrev-commit`. You may1509 override this option with `--no-abbrev-commit`.15101511log.date::1512 Set the default date-time mode for the 'log' command.1513 Setting a value for log.date is similar to using 'git log''s1514 `--date` option. Possible values are `relative`, `local`,1515 `default`, `iso`, `rfc`, and `short`; see linkgit:git-log[1]1516 for details.15171518log.decorate::1519 Print out the ref names of any commits that are shown by the log1520 command. If 'short' is specified, the ref name prefixes 'refs/heads/',1521 'refs/tags/' and 'refs/remotes/' will not be printed. If 'full' is1522 specified, the full ref name (including prefix) will be printed.1523 This is the same as the log commands '--decorate' option.15241525log.showroot::1526 If true, the initial commit will be shown as a big creation event.1527 This is equivalent to a diff against an empty tree.1528 Tools like linkgit:git-log[1] or linkgit:git-whatchanged[1], which1529 normally hide the root commit will now show it. True by default.15301531mailmap.file::1532 The location of an augmenting mailmap file. The default1533 mailmap, located in the root of the repository, is loaded1534 first, then the mailmap file pointed to by this variable.1535 The location of the mailmap file may be in a repository1536 subdirectory, or somewhere outside of the repository itself.1537 See linkgit:git-shortlog[1] and linkgit:git-blame[1].15381539man.viewer::1540 Specify the programs that may be used to display help in the1541 'man' format. See linkgit:git-help[1].15421543man.<tool>.cmd::1544 Specify the command to invoke the specified man viewer. The1545 specified command is evaluated in shell with the man page1546 passed as argument. (See linkgit:git-help[1].)15471548man.<tool>.path::1549 Override the path for the given tool that may be used to1550 display help in the 'man' format. See linkgit:git-help[1].15511552include::merge-config.txt[]15531554mergetool.<tool>.path::1555 Override the path for the given tool. This is useful in case1556 your tool is not in the PATH.15571558mergetool.<tool>.cmd::1559 Specify the command to invoke the specified merge tool. The1560 specified command is evaluated in shell with the following1561 variables available: 'BASE' is the name of a temporary file1562 containing the common base of the files to be merged, if available;1563 'LOCAL' is the name of a temporary file containing the contents of1564 the file on the current branch; 'REMOTE' is the name of a temporary1565 file containing the contents of the file from the branch being1566 merged; 'MERGED' contains the name of the file to which the merge1567 tool should write the results of a successful merge.15681569mergetool.<tool>.trustExitCode::1570 For a custom merge command, specify whether the exit code of1571 the merge command can be used to determine whether the merge was1572 successful. If this is not set to true then the merge target file1573 timestamp is checked and the merge assumed to have been successful1574 if the file has been updated, otherwise the user is prompted to1575 indicate the success of the merge.15761577mergetool.keepBackup::1578 After performing a merge, the original file with conflict markers1579 can be saved as a file with a `.orig` extension. If this variable1580 is set to `false` then this file is not preserved. Defaults to1581 `true` (i.e. keep the backup files).15821583mergetool.keepTemporaries::1584 When invoking a custom merge tool, git uses a set of temporary1585 files to pass to the tool. If the tool returns an error and this1586 variable is set to `true`, then these temporary files will be1587 preserved, otherwise they will be removed after the tool has1588 exited. Defaults to `false`.15891590mergetool.prompt::1591 Prompt before each invocation of the merge resolution program.15921593notes.displayRef::1594 The (fully qualified) refname from which to show notes when1595 showing commit messages. The value of this variable can be set1596 to a glob, in which case notes from all matching refs will be1597 shown. You may also specify this configuration variable1598 several times. A warning will be issued for refs that do not1599 exist, but a glob that does not match any refs is silently1600 ignored.1601+1602This setting can be overridden with the `GIT_NOTES_DISPLAY_REF`1603environment variable, which must be a colon separated list of refs or1604globs.1605+1606The effective value of "core.notesRef" (possibly overridden by1607GIT_NOTES_REF) is also implicitly added to the list of refs to be1608displayed.16091610notes.rewrite.<command>::1611 When rewriting commits with <command> (currently `amend` or1612 `rebase`) and this variable is set to `true`, git1613 automatically copies your notes from the original to the1614 rewritten commit. Defaults to `true`, but see1615 "notes.rewriteRef" below.16161617notes.rewriteMode::1618 When copying notes during a rewrite (see the1619 "notes.rewrite.<command>" option), determines what to do if1620 the target commit already has a note. Must be one of1621 `overwrite`, `concatenate`, or `ignore`. Defaults to1622 `concatenate`.1623+1624This setting can be overridden with the `GIT_NOTES_REWRITE_MODE`1625environment variable.16261627notes.rewriteRef::1628 When copying notes during a rewrite, specifies the (fully1629 qualified) ref whose notes should be copied. The ref may be a1630 glob, in which case notes in all matching refs will be copied.1631 You may also specify this configuration several times.1632+1633Does not have a default value; you must configure this variable to1634enable note rewriting. Set it to `refs/notes/commits` to enable1635rewriting for the default commit notes.1636+1637This setting can be overridden with the `GIT_NOTES_REWRITE_REF`1638environment variable, which must be a colon separated list of refs or1639globs.16401641pack.window::1642 The size of the window used by linkgit:git-pack-objects[1] when no1643 window size is given on the command line. Defaults to 10.16441645pack.depth::1646 The maximum delta depth used by linkgit:git-pack-objects[1] when no1647 maximum depth is given on the command line. Defaults to 50.16481649pack.windowMemory::1650 The window memory size limit used by linkgit:git-pack-objects[1]1651 when no limit is given on the command line. The value can be1652 suffixed with "k", "m", or "g". Defaults to 0, meaning no1653 limit.16541655pack.compression::1656 An integer -1..9, indicating the compression level for objects1657 in a pack file. -1 is the zlib default. 0 means no1658 compression, and 1..9 are various speed/size tradeoffs, 9 being1659 slowest. If not set, defaults to core.compression. If that is1660 not set, defaults to -1, the zlib default, which is "a default1661 compromise between speed and compression (currently equivalent1662 to level 6)."1663+1664Note that changing the compression level will not automatically recompress1665all existing objects. You can force recompression by passing the -F option1666to linkgit:git-repack[1].16671668pack.deltaCacheSize::1669 The maximum memory in bytes used for caching deltas in1670 linkgit:git-pack-objects[1] before writing them out to a pack.1671 This cache is used to speed up the writing object phase by not1672 having to recompute the final delta result once the best match1673 for all objects is found. Repacking large repositories on machines1674 which are tight with memory might be badly impacted by this though,1675 especially if this cache pushes the system into swapping.1676 A value of 0 means no limit. The smallest size of 1 byte may be1677 used to virtually disable this cache. Defaults to 256 MiB.16781679pack.deltaCacheLimit::1680 The maximum size of a delta, that is cached in1681 linkgit:git-pack-objects[1]. This cache is used to speed up the1682 writing object phase by not having to recompute the final delta1683 result once the best match for all objects is found. Defaults to 1000.16841685pack.threads::1686 Specifies the number of threads to spawn when searching for best1687 delta matches. This requires that linkgit:git-pack-objects[1]1688 be compiled with pthreads otherwise this option is ignored with a1689 warning. This is meant to reduce packing time on multiprocessor1690 machines. The required amount of memory for the delta search window1691 is however multiplied by the number of threads.1692 Specifying 0 will cause git to auto-detect the number of CPU's1693 and set the number of threads accordingly.16941695pack.indexVersion::1696 Specify the default pack index version. Valid values are 1 for1697 legacy pack index used by Git versions prior to 1.5.2, and 2 for1698 the new pack index with capabilities for packs larger than 4 GB1699 as well as proper protection against the repacking of corrupted1700 packs. Version 2 is the default. Note that version 2 is enforced1701 and this config option ignored whenever the corresponding pack is1702 larger than 2 GB.1703+1704If you have an old git that does not understand the version 2 `*.idx` file,1705cloning or fetching over a non native protocol (e.g. "http" and "rsync")1706that will copy both `*.pack` file and corresponding `*.idx` file from the1707other side may give you a repository that cannot be accessed with your1708older version of git. If the `*.pack` file is smaller than 2 GB, however,1709you can use linkgit:git-index-pack[1] on the *.pack file to regenerate1710the `*.idx` file.17111712pack.packSizeLimit::1713 The maximum size of a pack. This setting only affects1714 packing to a file when repacking, i.e. the git:// protocol1715 is unaffected. It can be overridden by the `--max-pack-size`1716 option of linkgit:git-repack[1]. The minimum size allowed is1717 limited to 1 MiB. The default is unlimited.1718 Common unit suffixes of 'k', 'm', or 'g' are1719 supported.17201721pager.<cmd>::1722 If the value is boolean, turns on or off pagination of the1723 output of a particular git subcommand when writing to a tty.1724 Otherwise, turns on pagination for the subcommand using the1725 pager specified by the value of `pager.<cmd>`. If `--paginate`1726 or `--no-pager` is specified on the command line, it takes1727 precedence over this option. To disable pagination for all1728 commands, set `core.pager` or `GIT_PAGER` to `cat`.17291730pretty.<name>::1731 Alias for a --pretty= format string, as specified in1732 linkgit:git-log[1]. Any aliases defined here can be used just1733 as the built-in pretty formats could. For example,1734 running `git config pretty.changelog "format:* %H %s"`1735 would cause the invocation `git log --pretty=changelog`1736 to be equivalent to running `git log "--pretty=format:* %H %s"`.1737 Note that an alias with the same name as a built-in format1738 will be silently ignored.17391740pull.rebase::1741 When true, rebase branches on top of the fetched branch, instead1742 of merging the default branch from the default remote when "git1743 pull" is run. See "branch.<name>.rebase" for setting this on a1744 per-branch basis.1745+1746*NOTE*: this is a possibly dangerous operation; do *not* use1747it unless you understand the implications (see linkgit:git-rebase[1]1748for details).17491750pull.octopus::1751 The default merge strategy to use when pulling multiple branches1752 at once.17531754pull.twohead::1755 The default merge strategy to use when pulling a single branch.17561757push.default::1758 Defines the action git push should take if no refspec is given1759 on the command line, no refspec is configured in the remote, and1760 no refspec is implied by any of the options given on the command1761 line. Possible values are:1762+1763--1764* `nothing` - do not push anything.1765* `matching` - push all branches having the same name in both ends.1766 This is for those who prepare all the branches into a publishable1767 shape and then push them out with a single command. It is not1768 appropriate for pushing into a repository shared by multiple users,1769 since locally stalled branches will attempt a non-fast forward push1770 if other users updated the branch.1771 +1772 This is currently the default, but Git 2.0 will change the default1773 to `simple`.1774* `upstream` - push the current branch to its upstream branch.1775 With this, `git push` will update the same remote ref as the one which1776 is merged by `git pull`, making `push` and `pull` symmetrical.1777 See "branch.<name>.merge" for how to configure the upstream branch.1778* `simple` - like `upstream`, but refuses to push if the upstream1779 branch's name is different from the local one. This is the safest1780 option and is well-suited for beginners. It will become the default1781 in Git 2.0.1782* `current` - push the current branch to a branch of the same name.1783--1784+1785The `simple`, `current` and `upstream` modes are for those who want to1786push out a single branch after finishing work, even when the other1787branches are not yet ready to be pushed out. If you are working with1788other people to push into the same shared repository, you would want1789to use one of these.17901791rebase.stat::1792 Whether to show a diffstat of what changed upstream since the last1793 rebase. False by default.17941795rebase.autosquash::1796 If set to true enable '--autosquash' option by default.17971798receive.autogc::1799 By default, git-receive-pack will run "git-gc --auto" after1800 receiving data from git-push and updating refs. You can stop1801 it by setting this variable to false.18021803receive.fsckObjects::1804 If it is set to true, git-receive-pack will check all received1805 objects. It will abort in the case of a malformed object or a1806 broken link. The result of an abort are only dangling objects.1807 Defaults to false. If not set, the value of `transfer.fsckObjects`1808 is used instead.18091810receive.unpackLimit::1811 If the number of objects received in a push is below this1812 limit then the objects will be unpacked into loose object1813 files. However if the number of received objects equals or1814 exceeds this limit then the received pack will be stored as1815 a pack, after adding any missing delta bases. Storing the1816 pack from a push can make the push operation complete faster,1817 especially on slow filesystems. If not set, the value of1818 `transfer.unpackLimit` is used instead.18191820receive.denyDeletes::1821 If set to true, git-receive-pack will deny a ref update that deletes1822 the ref. Use this to prevent such a ref deletion via a push.18231824receive.denyDeleteCurrent::1825 If set to true, git-receive-pack will deny a ref update that1826 deletes the currently checked out branch of a non-bare repository.18271828receive.denyCurrentBranch::1829 If set to true or "refuse", git-receive-pack will deny a ref update1830 to the currently checked out branch of a non-bare repository.1831 Such a push is potentially dangerous because it brings the HEAD1832 out of sync with the index and working tree. If set to "warn",1833 print a warning of such a push to stderr, but allow the push to1834 proceed. If set to false or "ignore", allow such pushes with no1835 message. Defaults to "refuse".18361837receive.denyNonFastForwards::1838 If set to true, git-receive-pack will deny a ref update which is1839 not a fast-forward. Use this to prevent such an update via a push,1840 even if that push is forced. This configuration variable is1841 set when initializing a shared repository.18421843receive.updateserverinfo::1844 If set to true, git-receive-pack will run git-update-server-info1845 after receiving data from git-push and updating refs.18461847remote.<name>.url::1848 The URL of a remote repository. See linkgit:git-fetch[1] or1849 linkgit:git-push[1].18501851remote.<name>.pushurl::1852 The push URL of a remote repository. See linkgit:git-push[1].18531854remote.<name>.proxy::1855 For remotes that require curl (http, https and ftp), the URL to1856 the proxy to use for that remote. Set to the empty string to1857 disable proxying for that remote.18581859remote.<name>.fetch::1860 The default set of "refspec" for linkgit:git-fetch[1]. See1861 linkgit:git-fetch[1].18621863remote.<name>.push::1864 The default set of "refspec" for linkgit:git-push[1]. See1865 linkgit:git-push[1].18661867remote.<name>.mirror::1868 If true, pushing to this remote will automatically behave1869 as if the `--mirror` option was given on the command line.18701871remote.<name>.skipDefaultUpdate::1872 If true, this remote will be skipped by default when updating1873 using linkgit:git-fetch[1] or the `update` subcommand of1874 linkgit:git-remote[1].18751876remote.<name>.skipFetchAll::1877 If true, this remote will be skipped by default when updating1878 using linkgit:git-fetch[1] or the `update` subcommand of1879 linkgit:git-remote[1].18801881remote.<name>.receivepack::1882 The default program to execute on the remote side when pushing. See1883 option \--receive-pack of linkgit:git-push[1].18841885remote.<name>.uploadpack::1886 The default program to execute on the remote side when fetching. See1887 option \--upload-pack of linkgit:git-fetch-pack[1].18881889remote.<name>.tagopt::1890 Setting this value to \--no-tags disables automatic tag following when1891 fetching from remote <name>. Setting it to \--tags will fetch every1892 tag from remote <name>, even if they are not reachable from remote1893 branch heads. Passing these flags directly to linkgit:git-fetch[1] can1894 override this setting. See options \--tags and \--no-tags of1895 linkgit:git-fetch[1].18961897remote.<name>.vcs::1898 Setting this to a value <vcs> will cause git to interact with1899 the remote with the git-remote-<vcs> helper.19001901remotes.<group>::1902 The list of remotes which are fetched by "git remote update1903 <group>". See linkgit:git-remote[1].19041905repack.usedeltabaseoffset::1906 By default, linkgit:git-repack[1] creates packs that use1907 delta-base offset. If you need to share your repository with1908 git older than version 1.4.4, either directly or via a dumb1909 protocol such as http, then you need to set this option to1910 "false" and repack. Access from old git versions over the1911 native protocol are unaffected by this option.19121913rerere.autoupdate::1914 When set to true, `git-rerere` updates the index with the1915 resulting contents after it cleanly resolves conflicts using1916 previously recorded resolution. Defaults to false.19171918rerere.enabled::1919 Activate recording of resolved conflicts, so that identical1920 conflict hunks can be resolved automatically, should they be1921 encountered again. By default, linkgit:git-rerere[1] is1922 enabled if there is an `rr-cache` directory under the1923 `$GIT_DIR`, e.g. if "rerere" was previously used in the1924 repository.19251926sendemail.identity::1927 A configuration identity. When given, causes values in the1928 'sendemail.<identity>' subsection to take precedence over1929 values in the 'sendemail' section. The default identity is1930 the value of 'sendemail.identity'.19311932sendemail.smtpencryption::1933 See linkgit:git-send-email[1] for description. Note that this1934 setting is not subject to the 'identity' mechanism.19351936sendemail.smtpssl::1937 Deprecated alias for 'sendemail.smtpencryption = ssl'.19381939sendemail.<identity>.*::1940 Identity-specific versions of the 'sendemail.*' parameters1941 found below, taking precedence over those when the this1942 identity is selected, through command-line or1943 'sendemail.identity'.19441945sendemail.aliasesfile::1946sendemail.aliasfiletype::1947sendemail.bcc::1948sendemail.cc::1949sendemail.cccmd::1950sendemail.chainreplyto::1951sendemail.confirm::1952sendemail.envelopesender::1953sendemail.from::1954sendemail.multiedit::1955sendemail.signedoffbycc::1956sendemail.smtppass::1957sendemail.suppresscc::1958sendemail.suppressfrom::1959sendemail.to::1960sendemail.smtpdomain::1961sendemail.smtpserver::1962sendemail.smtpserverport::1963sendemail.smtpserveroption::1964sendemail.smtpuser::1965sendemail.thread::1966sendemail.validate::1967 See linkgit:git-send-email[1] for description.19681969sendemail.signedoffcc::1970 Deprecated alias for 'sendemail.signedoffbycc'.19711972showbranch.default::1973 The default set of branches for linkgit:git-show-branch[1].1974 See linkgit:git-show-branch[1].19751976status.relativePaths::1977 By default, linkgit:git-status[1] shows paths relative to the1978 current directory. Setting this variable to `false` shows paths1979 relative to the repository root (this was the default for git1980 prior to v1.5.4).19811982status.showUntrackedFiles::1983 By default, linkgit:git-status[1] and linkgit:git-commit[1] show1984 files which are not currently tracked by Git. Directories which1985 contain only untracked files, are shown with the directory name1986 only. Showing untracked files means that Git needs to lstat() all1987 all the files in the whole repository, which might be slow on some1988 systems. So, this variable controls how the commands displays1989 the untracked files. Possible values are:1990+1991--1992* `no` - Show no untracked files.1993* `normal` - Show untracked files and directories.1994* `all` - Show also individual files in untracked directories.1995--1996+1997If this variable is not specified, it defaults to 'normal'.1998This variable can be overridden with the -u|--untracked-files option1999of linkgit:git-status[1] and linkgit:git-commit[1].20002001status.submodulesummary::2002 Defaults to false.2003 If this is set to a non zero number or true (identical to -1 or an2004 unlimited number), the submodule summary will be enabled and a2005 summary of commits for modified submodules will be shown (see2006 --summary-limit option of linkgit:git-submodule[1]).20072008submodule.<name>.path::2009submodule.<name>.url::2010submodule.<name>.update::2011 The path within this project, URL, and the updating strategy2012 for a submodule. These variables are initially populated2013 by 'git submodule init'; edit them to override the2014 URL and other values found in the `.gitmodules` file. See2015 linkgit:git-submodule[1] and linkgit:gitmodules[5] for details.20162017submodule.<name>.fetchRecurseSubmodules::2018 This option can be used to control recursive fetching of this2019 submodule. It can be overridden by using the --[no-]recurse-submodules2020 command line option to "git fetch" and "git pull".2021 This setting will override that from in the linkgit:gitmodules[5]2022 file.20232024submodule.<name>.ignore::2025 Defines under what circumstances "git status" and the diff family show2026 a submodule as modified. When set to "all", it will never be considered2027 modified, "dirty" will ignore all changes to the submodules work tree and2028 takes only differences between the HEAD of the submodule and the commit2029 recorded in the superproject into account. "untracked" will additionally2030 let submodules with modified tracked files in their work tree show up.2031 Using "none" (the default when this option is not set) also shows2032 submodules that have untracked files in their work tree as changed.2033 This setting overrides any setting made in .gitmodules for this submodule,2034 both settings can be overridden on the command line by using the2035 "--ignore-submodules" option.20362037tar.umask::2038 This variable can be used to restrict the permission bits of2039 tar archive entries. The default is 0002, which turns off the2040 world write bit. The special value "user" indicates that the2041 archiving user's umask will be used instead. See umask(2) and2042 linkgit:git-archive[1].20432044transfer.fsckObjects::2045 When `fetch.fsckObjects` or `receive.fsckObjects` are2046 not set, the value of this variable is used instead.2047 Defaults to false.20482049transfer.unpackLimit::2050 When `fetch.unpackLimit` or `receive.unpackLimit` are2051 not set, the value of this variable is used instead.2052 The default value is 100.20532054url.<base>.insteadOf::2055 Any URL that starts with this value will be rewritten to2056 start, instead, with <base>. In cases where some site serves a2057 large number of repositories, and serves them with multiple2058 access methods, and some users need to use different access2059 methods, this feature allows people to specify any of the2060 equivalent URLs and have git automatically rewrite the URL to2061 the best alternative for the particular user, even for a2062 never-before-seen repository on the site. When more than one2063 insteadOf strings match a given URL, the longest match is used.20642065url.<base>.pushInsteadOf::2066 Any URL that starts with this value will not be pushed to;2067 instead, it will be rewritten to start with <base>, and the2068 resulting URL will be pushed to. In cases where some site serves2069 a large number of repositories, and serves them with multiple2070 access methods, some of which do not allow push, this feature2071 allows people to specify a pull-only URL and have git2072 automatically use an appropriate URL to push, even for a2073 never-before-seen repository on the site. When more than one2074 pushInsteadOf strings match a given URL, the longest match is2075 used. If a remote has an explicit pushurl, git will ignore this2076 setting for that remote.20772078user.email::2079 Your email address to be recorded in any newly created commits.2080 Can be overridden by the 'GIT_AUTHOR_EMAIL', 'GIT_COMMITTER_EMAIL', and2081 'EMAIL' environment variables. See linkgit:git-commit-tree[1].20822083user.name::2084 Your full name to be recorded in any newly created commits.2085 Can be overridden by the 'GIT_AUTHOR_NAME' and 'GIT_COMMITTER_NAME'2086 environment variables. See linkgit:git-commit-tree[1].20872088user.signingkey::2089 If linkgit:git-tag[1] is not selecting the key you want it to2090 automatically when creating a signed tag, you can override the2091 default selection with this variable. This option is passed2092 unchanged to gpg's --local-user parameter, so you may specify a key2093 using any method that gpg supports.20942095web.browser::2096 Specify a web browser that may be used by some commands.2097 Currently only linkgit:git-instaweb[1] and linkgit:git-help[1]2098 may use it.