1CONFIGURATION FILE 2------------------ 3 4The Git configuration file contains a number of variables that affect 5the Git commands' 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; we say then that the variable is 18multivalued. 19 20Syntax 21~~~~~~ 22 23The syntax is fairly flexible and permissive; whitespaces are mostly 24ignored. The '#' and ';' characters begin comments to the end of line, 25blank lines are ignored. 26 27The file consists of sections and variables. A section begins with 28the name of the section in square brackets and continues until the next 29section begins. Section names are case-insensitive. Only alphanumeric 30characters, `-` and `.` are allowed in section names. Each variable 31must belong to some section, which means that there must be a section 32header before the first setting of a variable. 33 34Sections can be further divided into subsections. To begin a subsection 35put its name in double quotes, separated by space from the section name, 36in the section header, like in the example below: 37 38-------- 39 [section "subsection"] 40 41-------- 42 43Subsection names are case sensitive and can contain any characters except 44newline (doublequote `"` and backslash can be included by escaping them 45as `\"` and `\\`, respectively). Section headers cannot span multiple 46lines. Variables may belong directly to a section or to a given subsection. 47You can have `[section]` if you have `[section "subsection"]`, but you 48don't need to. 49 50There is also a deprecated `[section.subsection]` syntax. With this 51syntax, the subsection name is converted to lower-case and is also 52compared case sensitively. These subsection names follow the same 53restrictions as section names. 54 55All the other lines (and the remainder of the line after the section 56header) are recognized as setting variables, in the form 57'name = value' (or just 'name', which is a short-hand to say that 58the variable is the boolean "true"). 59The variable names are case-insensitive, allow only alphanumeric characters 60and `-`, and must start with an alphabetic character. 61 62A line that defines a value can be continued to the next line by 63ending it with a `\`; the backquote and the end-of-line are 64stripped. Leading whitespaces after 'name =', the remainder of the 65line after the first comment character '#' or ';', and trailing 66whitespaces of the line are discarded unless they are enclosed in 67double quotes. Internal whitespaces within the value are retained 68verbatim. 69 70Inside double quotes, double quote `"` and backslash `\` characters 71must be escaped: use `\"` for `"` and `\\` for `\`. 72 73The following escape sequences (beside `\"` and `\\`) are recognized: 74`\n` for newline character (NL), `\t` for horizontal tabulation (HT, TAB) 75and `\b` for backspace (BS). Other char escape sequences (including octal 76escape sequences) are invalid. 77 78 79Includes 80~~~~~~~~ 81 82The `include` and `includeIf` sections allow you to include config 83directives from another source. These sections behave identically to 84each other with the exception that `includeIf` sections may be ignored 85if their condition does not evaluate to true; see "Conditional includes" 86below. 87 88You can include a config file from another by setting the special 89`include.path` (or `includeIf.*.path`) variable to the name of the file 90to be included. The variable takes a pathname as its value, and is 91subject to tilde expansion. These variables can be given multiple times. 92 93The contents of the included file are inserted immediately, as if they 94had been found at the location of the include directive. If the value of the 95variable is a relative path, the path is considered to 96be relative to the configuration file in which the include directive 97was found. See below for examples. 98 99Conditional includes 100~~~~~~~~~~~~~~~~~~~~ 101 102You can include a config file from another conditionally by setting a 103`includeIf.<condition>.path` variable to the name of the file to be 104included. 105 106The condition starts with a keyword followed by a colon and some data 107whose format and meaning depends on the keyword. Supported keywords 108are: 109 110`gitdir`:: 111 112 The data that follows the keyword `gitdir:` is used as a glob 113 pattern. If the location of the .git directory matches the 114 pattern, the include condition is met. 115+ 116The .git location may be auto-discovered, or come from `$GIT_DIR` 117environment variable. If the repository is auto discovered via a .git 118file (e.g. from submodules, or a linked worktree), the .git location 119would be the final location where the .git directory is, not where the 120.git file is. 121+ 122The pattern can contain standard globbing wildcards and two additional 123ones, `**/` and `/**`, that can match multiple path components. Please 124refer to linkgit:gitignore[5] for details. For convenience: 125 126 * If the pattern starts with `~/`, `~` will be substituted with the 127 content of the environment variable `HOME`. 128 129 * If the pattern starts with `./`, it is replaced with the directory 130 containing the current config file. 131 132 * If the pattern does not start with either `~/`, `./` or `/`, `**/` 133 will be automatically prepended. For example, the pattern `foo/bar` 134 becomes `**/foo/bar` and would match `/any/path/to/foo/bar`. 135 136 * If the pattern ends with `/`, `**` will be automatically added. For 137 example, the pattern `foo/` becomes `foo/**`. In other words, it 138 matches "foo" and everything inside, recursively. 139 140`gitdir/i`:: 141 This is the same as `gitdir` except that matching is done 142 case-insensitively (e.g. on case-insensitive file sytems) 143 144A few more notes on matching via `gitdir` and `gitdir/i`: 145 146 * Symlinks in `$GIT_DIR` are not resolved before matching. 147 148 * Both the symlink & realpath versions of paths will be matched 149 outside of `$GIT_DIR`. E.g. if ~/git is a symlink to 150 /mnt/storage/git, both `gitdir:~/git` and `gitdir:/mnt/storage/git` 151 will match. 152+ 153This was not the case in the initial release of this feature in 154v2.13.0, which only matched the realpath version. Configuration that 155wants to be compatible with the initial release of this feature needs 156to either specify only the realpath version, or both versions. 157 158 * Note that "../" is not special and will match literally, which is 159 unlikely what you want. 160 161Example 162~~~~~~~ 163 164 # Core variables 165 [core] 166 ; Don't trust file modes 167 filemode = false 168 169 # Our diff algorithm 170 [diff] 171 external = /usr/local/bin/diff-wrapper 172 renames = true 173 174 [branch "devel"] 175 remote = origin 176 merge = refs/heads/devel 177 178 # Proxy settings 179 [core] 180 gitProxy="ssh" for "kernel.org" 181 gitProxy=default-proxy ; for the rest 182 183 [include] 184 path = /path/to/foo.inc ; include by absolute path 185 path = foo.inc ; find "foo.inc" relative to the current file 186 path = ~/foo.inc ; find "foo.inc" in your `$HOME` directory 187 188 ; include if $GIT_DIR is /path/to/foo/.git 189 [includeIf "gitdir:/path/to/foo/.git"] 190 path = /path/to/foo.inc 191 192 ; include for all repositories inside /path/to/group 193 [includeIf "gitdir:/path/to/group/"] 194 path = /path/to/foo.inc 195 196 ; include for all repositories inside $HOME/to/group 197 [includeIf "gitdir:~/to/group/"] 198 path = /path/to/foo.inc 199 200 ; relative paths are always relative to the including 201 ; file (if the condition is true); their location is not 202 ; affected by the condition 203 [includeIf "gitdir:/path/to/group/"] 204 path = foo.inc 205 206Values 207~~~~~~ 208 209Values of many variables are treated as a simple string, but there 210are variables that take values of specific types and there are rules 211as to how to spell them. 212 213boolean:: 214 215 When a variable is said to take a boolean value, many 216 synonyms are accepted for 'true' and 'false'; these are all 217 case-insensitive. 218 219 true;; Boolean true literals are `yes`, `on`, `true`, 220 and `1`. Also, a variable defined without `= <value>` 221 is taken as true. 222 223 false;; Boolean false literals are `no`, `off`, `false`, 224 `0` and the empty string. 225+ 226When converting value to the canonical form using `--bool` type 227specifier, 'git config' will ensure that the output is "true" or 228"false" (spelled in lowercase). 229 230integer:: 231 The value for many variables that specify various sizes can 232 be suffixed with `k`, `M`,... to mean "scale the number by 233 1024", "by 1024x1024", etc. 234 235color:: 236 The value for a variable that takes a color is a list of 237 colors (at most two, one for foreground and one for background) 238 and attributes (as many as you want), separated by spaces. 239+ 240The basic colors accepted are `normal`, `black`, `red`, `green`, `yellow`, 241`blue`, `magenta`, `cyan` and `white`. The first color given is the 242foreground; the second is the background. 243+ 244Colors may also be given as numbers between 0 and 255; these use ANSI 245256-color mode (but note that not all terminals may support this). If 246your terminal supports it, you may also specify 24-bit RGB values as 247hex, like `#ff0ab3`. 248+ 249The accepted attributes are `bold`, `dim`, `ul`, `blink`, `reverse`, 250`italic`, and `strike` (for crossed-out or "strikethrough" letters). 251The position of any attributes with respect to the colors 252(before, after, or in between), doesn't matter. Specific attributes may 253be turned off by prefixing them with `no` or `no-` (e.g., `noreverse`, 254`no-ul`, etc). 255+ 256An empty color string produces no color effect at all. This can be used 257to avoid coloring specific elements without disabling color entirely. 258+ 259For git's pre-defined color slots, the attributes are meant to be reset 260at the beginning of each item in the colored output. So setting 261`color.decorate.branch` to `black` will paint that branch name in a 262plain `black`, even if the previous thing on the same output line (e.g. 263opening parenthesis before the list of branch names in `log --decorate` 264output) is set to be painted with `bold` or some other attribute. 265However, custom log formats may do more complicated and layered 266coloring, and the negated forms may be useful there. 267 268pathname:: 269 A variable that takes a pathname value can be given a 270 string that begins with "`~/`" or "`~user/`", and the usual 271 tilde expansion happens to such a string: `~/` 272 is expanded to the value of `$HOME`, and `~user/` to the 273 specified user's home directory. 274 275 276Variables 277~~~~~~~~~ 278 279Note that this list is non-comprehensive and not necessarily complete. 280For command-specific variables, you will find a more detailed description 281in the appropriate manual page. 282 283Other git-related tools may and do use their own variables. When 284inventing new variables for use in your own tool, make sure their 285names do not conflict with those that are used by Git itself and 286other popular tools, and describe them in your documentation. 287 288 289advice.*:: 290 These variables control various optional help messages designed to 291 aid new users. All 'advice.*' variables default to 'true', and you 292 can tell Git that you do not need help by setting these to 'false': 293+ 294-- 295 pushUpdateRejected:: 296 Set this variable to 'false' if you want to disable 297 'pushNonFFCurrent', 298 'pushNonFFMatching', 'pushAlreadyExists', 299 'pushFetchFirst', and 'pushNeedsForce' 300 simultaneously. 301 pushNonFFCurrent:: 302 Advice shown when linkgit:git-push[1] fails due to a 303 non-fast-forward update to the current branch. 304 pushNonFFMatching:: 305 Advice shown when you ran linkgit:git-push[1] and pushed 306 'matching refs' explicitly (i.e. you used ':', or 307 specified a refspec that isn't your current branch) and 308 it resulted in a non-fast-forward error. 309 pushAlreadyExists:: 310 Shown when linkgit:git-push[1] rejects an update that 311 does not qualify for fast-forwarding (e.g., a tag.) 312 pushFetchFirst:: 313 Shown when linkgit:git-push[1] rejects an update that 314 tries to overwrite a remote ref that points at an 315 object we do not have. 316 pushNeedsForce:: 317 Shown when linkgit:git-push[1] rejects an update that 318 tries to overwrite a remote ref that points at an 319 object that is not a commit-ish, or make the remote 320 ref point at an object that is not a commit-ish. 321 statusHints:: 322 Show directions on how to proceed from the current 323 state in the output of linkgit:git-status[1], in 324 the template shown when writing commit messages in 325 linkgit:git-commit[1], and in the help message shown 326 by linkgit:git-checkout[1] when switching branch. 327 statusUoption:: 328 Advise to consider using the `-u` option to linkgit:git-status[1] 329 when the command takes more than 2 seconds to enumerate untracked 330 files. 331 commitBeforeMerge:: 332 Advice shown when linkgit:git-merge[1] refuses to 333 merge to avoid overwriting local changes. 334 resolveConflict:: 335 Advice shown by various commands when conflicts 336 prevent the operation from being performed. 337 implicitIdentity:: 338 Advice on how to set your identity configuration when 339 your information is guessed from the system username and 340 domain name. 341 detachedHead:: 342 Advice shown when you used linkgit:git-checkout[1] to 343 move to the detach HEAD state, to instruct how to create 344 a local branch after the fact. 345 amWorkDir:: 346 Advice that shows the location of the patch file when 347 linkgit:git-am[1] fails to apply it. 348 rmHints:: 349 In case of failure in the output of linkgit:git-rm[1], 350 show directions on how to proceed from the current state. 351 addEmbeddedRepo:: 352 Advice on what to do when you've accidentally added one 353 git repo inside of another. 354 ignoredHook:: 355 Advice shown if an hook is ignored because the hook is not 356 set as executable. 357-- 358 359core.fileMode:: 360 Tells Git if the executable bit of files in the working tree 361 is to be honored. 362+ 363Some filesystems lose the executable bit when a file that is 364marked as executable is checked out, or checks out a 365non-executable file with executable bit on. 366linkgit:git-clone[1] or linkgit:git-init[1] probe the filesystem 367to see if it handles the executable bit correctly 368and this variable is automatically set as necessary. 369+ 370A repository, however, may be on a filesystem that handles 371the filemode correctly, and this variable is set to 'true' 372when created, but later may be made accessible from another 373environment that loses the filemode (e.g. exporting ext4 via 374CIFS mount, visiting a Cygwin created repository with 375Git for Windows or Eclipse). 376In such a case it may be necessary to set this variable to 'false'. 377See linkgit:git-update-index[1]. 378+ 379The default is true (when core.filemode is not specified in the config file). 380 381core.hideDotFiles:: 382 (Windows-only) If true, mark newly-created directories and files whose 383 name starts with a dot as hidden. If 'dotGitOnly', only the `.git/` 384 directory is hidden, but no other files starting with a dot. The 385 default mode is 'dotGitOnly'. 386 387core.ignoreCase:: 388 If true, this option enables various workarounds to enable 389 Git to work better on filesystems that are not case sensitive, 390 like FAT. For example, if a directory listing finds 391 "makefile" when Git expects "Makefile", Git will assume 392 it is really the same file, and continue to remember it as 393 "Makefile". 394+ 395The default is false, except linkgit:git-clone[1] or linkgit:git-init[1] 396will probe and set core.ignoreCase true if appropriate when the repository 397is created. 398 399core.precomposeUnicode:: 400 This option is only used by Mac OS implementation of Git. 401 When core.precomposeUnicode=true, Git reverts the unicode decomposition 402 of filenames done by Mac OS. This is useful when sharing a repository 403 between Mac OS and Linux or Windows. 404 (Git for Windows 1.7.10 or higher is needed, or Git under cygwin 1.7). 405 When false, file names are handled fully transparent by Git, 406 which is backward compatible with older versions of Git. 407 408core.protectHFS:: 409 If set to true, do not allow checkout of paths that would 410 be considered equivalent to `.git` on an HFS+ filesystem. 411 Defaults to `true` on Mac OS, and `false` elsewhere. 412 413core.protectNTFS:: 414 If set to true, do not allow checkout of paths that would 415 cause problems with the NTFS filesystem, e.g. conflict with 416 8.3 "short" names. 417 Defaults to `true` on Windows, and `false` elsewhere. 418 419core.fsmonitor:: 420 If set, the value of this variable is used as a command which 421 will identify all files that may have changed since the 422 requested date/time. This information is used to speed up git by 423 avoiding unnecessary processing of files that have not changed. 424 See the "fsmonitor-watchman" section of linkgit:githooks[5]. 425 426core.trustctime:: 427 If false, the ctime differences between the index and the 428 working tree are ignored; useful when the inode change time 429 is regularly modified by something outside Git (file system 430 crawlers and some backup systems). 431 See linkgit:git-update-index[1]. True by default. 432 433core.splitIndex:: 434 If true, the split-index feature of the index will be used. 435 See linkgit:git-update-index[1]. False by default. 436 437core.untrackedCache:: 438 Determines what to do about the untracked cache feature of the 439 index. It will be kept, if this variable is unset or set to 440 `keep`. It will automatically be added if set to `true`. And 441 it will automatically be removed, if set to `false`. Before 442 setting it to `true`, you should check that mtime is working 443 properly on your system. 444 See linkgit:git-update-index[1]. `keep` by default. 445 446core.checkStat:: 447 Determines which stat fields to match between the index 448 and work tree. The user can set this to 'default' or 449 'minimal'. Default (or explicitly 'default'), is to check 450 all fields, including the sub-second part of mtime and ctime. 451 452core.quotePath:: 453 Commands that output paths (e.g. 'ls-files', 'diff'), will 454 quote "unusual" characters in the pathname by enclosing the 455 pathname in double-quotes and escaping those characters with 456 backslashes in the same way C escapes control characters (e.g. 457 `\t` for TAB, `\n` for LF, `\\` for backslash) or bytes with 458 values larger than 0x80 (e.g. octal `\302\265` for "micro" in 459 UTF-8). If this variable is set to false, bytes higher than 460 0x80 are not considered "unusual" any more. Double-quotes, 461 backslash and control characters are always escaped regardless 462 of the setting of this variable. A simple space character is 463 not considered "unusual". Many commands can output pathnames 464 completely verbatim using the `-z` option. The default value 465 is true. 466 467core.eol:: 468 Sets the line ending type to use in the working directory for 469 files that have the `text` property set when core.autocrlf is false. 470 Alternatives are 'lf', 'crlf' and 'native', which uses the platform's 471 native line ending. The default value is `native`. See 472 linkgit:gitattributes[5] for more information on end-of-line 473 conversion. 474 475core.safecrlf:: 476 If true, makes Git check if converting `CRLF` is reversible when 477 end-of-line conversion is active. Git will verify if a command 478 modifies a file in the work tree either directly or indirectly. 479 For example, committing a file followed by checking out the 480 same file should yield the original file in the work tree. If 481 this is not the case for the current setting of 482 `core.autocrlf`, Git will reject the file. The variable can 483 be set to "warn", in which case Git will only warn about an 484 irreversible conversion but continue the operation. 485+ 486CRLF conversion bears a slight chance of corrupting data. 487When it is enabled, Git will convert CRLF to LF during commit and LF to 488CRLF during checkout. A file that contains a mixture of LF and 489CRLF before the commit cannot be recreated by Git. For text 490files this is the right thing to do: it corrects line endings 491such that we have only LF line endings in the repository. 492But for binary files that are accidentally classified as text the 493conversion can corrupt data. 494+ 495If you recognize such corruption early you can easily fix it by 496setting the conversion type explicitly in .gitattributes. Right 497after committing you still have the original file in your work 498tree and this file is not yet corrupted. You can explicitly tell 499Git that this file is binary and Git will handle the file 500appropriately. 501+ 502Unfortunately, the desired effect of cleaning up text files with 503mixed line endings and the undesired effect of corrupting binary 504files cannot be distinguished. In both cases CRLFs are removed 505in an irreversible way. For text files this is the right thing 506to do because CRLFs are line endings, while for binary files 507converting CRLFs corrupts data. 508+ 509Note, this safety check does not mean that a checkout will generate a 510file identical to the original file for a different setting of 511`core.eol` and `core.autocrlf`, but only for the current one. For 512example, a text file with `LF` would be accepted with `core.eol=lf` 513and could later be checked out with `core.eol=crlf`, in which case the 514resulting file would contain `CRLF`, although the original file 515contained `LF`. However, in both work trees the line endings would be 516consistent, that is either all `LF` or all `CRLF`, but never mixed. A 517file with mixed line endings would be reported by the `core.safecrlf` 518mechanism. 519 520core.autocrlf:: 521 Setting this variable to "true" is the same as setting 522 the `text` attribute to "auto" on all files and core.eol to "crlf". 523 Set to true if you want to have `CRLF` line endings in your 524 working directory and the repository has LF line endings. 525 This variable can be set to 'input', 526 in which case no output conversion is performed. 527 528core.symlinks:: 529 If false, symbolic links are checked out as small plain files that 530 contain the link text. linkgit:git-update-index[1] and 531 linkgit:git-add[1] will not change the recorded type to regular 532 file. Useful on filesystems like FAT that do not support 533 symbolic links. 534+ 535The default is true, except linkgit:git-clone[1] or linkgit:git-init[1] 536will probe and set core.symlinks false if appropriate when the repository 537is created. 538 539core.gitProxy:: 540 A "proxy command" to execute (as 'command host port') instead 541 of establishing direct connection to the remote server when 542 using the Git protocol for fetching. If the variable value is 543 in the "COMMAND for DOMAIN" format, the command is applied only 544 on hostnames ending with the specified domain string. This variable 545 may be set multiple times and is matched in the given order; 546 the first match wins. 547+ 548Can be overridden by the `GIT_PROXY_COMMAND` environment variable 549(which always applies universally, without the special "for" 550handling). 551+ 552The special string `none` can be used as the proxy command to 553specify that no proxy be used for a given domain pattern. 554This is useful for excluding servers inside a firewall from 555proxy use, while defaulting to a common proxy for external domains. 556 557core.sshCommand:: 558 If this variable is set, `git fetch` and `git push` will 559 use the specified command instead of `ssh` when they need to 560 connect to a remote system. The command is in the same form as 561 the `GIT_SSH_COMMAND` environment variable and is overridden 562 when the environment variable is set. 563 564core.ignoreStat:: 565 If true, Git will avoid using lstat() calls to detect if files have 566 changed by setting the "assume-unchanged" bit for those tracked files 567 which it has updated identically in both the index and working tree. 568+ 569When files are modified outside of Git, the user will need to stage 570the modified files explicitly (e.g. see 'Examples' section in 571linkgit:git-update-index[1]). 572Git will not normally detect changes to those files. 573+ 574This is useful on systems where lstat() calls are very slow, such as 575CIFS/Microsoft Windows. 576+ 577False by default. 578 579core.preferSymlinkRefs:: 580 Instead of the default "symref" format for HEAD 581 and other symbolic reference files, use symbolic links. 582 This is sometimes needed to work with old scripts that 583 expect HEAD to be a symbolic link. 584 585core.bare:: 586 If true this repository is assumed to be 'bare' and has no 587 working directory associated with it. If this is the case a 588 number of commands that require a working directory will be 589 disabled, such as linkgit:git-add[1] or linkgit:git-merge[1]. 590+ 591This setting is automatically guessed by linkgit:git-clone[1] or 592linkgit:git-init[1] when the repository was created. By default a 593repository that ends in "/.git" is assumed to be not bare (bare = 594false), while all other repositories are assumed to be bare (bare 595= true). 596 597core.worktree:: 598 Set the path to the root of the working tree. 599 If `GIT_COMMON_DIR` environment variable is set, core.worktree 600 is ignored and not used for determining the root of working tree. 601 This can be overridden by the `GIT_WORK_TREE` environment 602 variable and the `--work-tree` command-line option. 603 The value can be an absolute path or relative to the path to 604 the .git directory, which is either specified by --git-dir 605 or GIT_DIR, or automatically discovered. 606 If --git-dir or GIT_DIR is specified but none of 607 --work-tree, GIT_WORK_TREE and core.worktree is specified, 608 the current working directory is regarded as the top level 609 of your working tree. 610+ 611Note that this variable is honored even when set in a configuration 612file in a ".git" subdirectory of a directory and its value differs 613from the latter directory (e.g. "/path/to/.git/config" has 614core.worktree set to "/different/path"), which is most likely a 615misconfiguration. Running Git commands in the "/path/to" directory will 616still use "/different/path" as the root of the work tree and can cause 617confusion unless you know what you are doing (e.g. you are creating a 618read-only snapshot of the same index to a location different from the 619repository's usual working tree). 620 621core.logAllRefUpdates:: 622 Enable the reflog. Updates to a ref <ref> is logged to the file 623 "`$GIT_DIR/logs/<ref>`", by appending the new and old 624 SHA-1, the date/time and the reason of the update, but 625 only when the file exists. If this configuration 626 variable is set to `true`, missing "`$GIT_DIR/logs/<ref>`" 627 file is automatically created for branch heads (i.e. under 628 `refs/heads/`), remote refs (i.e. under `refs/remotes/`), 629 note refs (i.e. under `refs/notes/`), and the symbolic ref `HEAD`. 630 If it is set to `always`, then a missing reflog is automatically 631 created for any ref under `refs/`. 632+ 633This information can be used to determine what commit 634was the tip of a branch "2 days ago". 635+ 636This value is true by default in a repository that has 637a working directory associated with it, and false by 638default in a bare repository. 639 640core.repositoryFormatVersion:: 641 Internal variable identifying the repository format and layout 642 version. 643 644core.sharedRepository:: 645 When 'group' (or 'true'), the repository is made shareable between 646 several users in a group (making sure all the files and objects are 647 group-writable). When 'all' (or 'world' or 'everybody'), the 648 repository will be readable by all users, additionally to being 649 group-shareable. When 'umask' (or 'false'), Git will use permissions 650 reported by umask(2). When '0xxx', where '0xxx' is an octal number, 651 files in the repository will have this mode value. '0xxx' will override 652 user's umask value (whereas the other options will only override 653 requested parts of the user's umask value). Examples: '0660' will make 654 the repo read/write-able for the owner and group, but inaccessible to 655 others (equivalent to 'group' unless umask is e.g. '0022'). '0640' is a 656 repository that is group-readable but not group-writable. 657 See linkgit:git-init[1]. False by default. 658 659core.warnAmbiguousRefs:: 660 If true, Git will warn you if the ref name you passed it is ambiguous 661 and might match multiple refs in the repository. True by default. 662 663core.compression:: 664 An integer -1..9, indicating a default compression level. 665 -1 is the zlib default. 0 means no compression, 666 and 1..9 are various speed/size tradeoffs, 9 being slowest. 667 If set, this provides a default to other compression variables, 668 such as `core.looseCompression` and `pack.compression`. 669 670core.looseCompression:: 671 An integer -1..9, indicating the compression level for objects that 672 are not in a pack file. -1 is the zlib default. 0 means no 673 compression, and 1..9 are various speed/size tradeoffs, 9 being 674 slowest. If not set, defaults to core.compression. If that is 675 not set, defaults to 1 (best speed). 676 677core.packedGitWindowSize:: 678 Number of bytes of a pack file to map into memory in a 679 single mapping operation. Larger window sizes may allow 680 your system to process a smaller number of large pack files 681 more quickly. Smaller window sizes will negatively affect 682 performance due to increased calls to the operating system's 683 memory manager, but may improve performance when accessing 684 a large number of large pack files. 685+ 686Default is 1 MiB if NO_MMAP was set at compile time, otherwise 32 687MiB on 32 bit platforms and 1 GiB on 64 bit platforms. This should 688be reasonable for all users/operating systems. You probably do 689not need to adjust this value. 690+ 691Common unit suffixes of 'k', 'm', or 'g' are supported. 692 693core.packedGitLimit:: 694 Maximum number of bytes to map simultaneously into memory 695 from pack files. If Git needs to access more than this many 696 bytes at once to complete an operation it will unmap existing 697 regions to reclaim virtual address space within the process. 698+ 699Default is 256 MiB on 32 bit platforms and 32 TiB (effectively 700unlimited) on 64 bit platforms. 701This should be reasonable for all users/operating systems, except on 702the largest projects. You probably do not need to adjust this value. 703+ 704Common unit suffixes of 'k', 'm', or 'g' are supported. 705 706core.deltaBaseCacheLimit:: 707 Maximum number of bytes to reserve for caching base objects 708 that may be referenced by multiple deltified objects. By storing the 709 entire decompressed base objects in a cache Git is able 710 to avoid unpacking and decompressing frequently used base 711 objects multiple times. 712+ 713Default is 96 MiB on all platforms. This should be reasonable 714for all users/operating systems, except on the largest projects. 715You probably do not need to adjust this value. 716+ 717Common unit suffixes of 'k', 'm', or 'g' are supported. 718 719core.bigFileThreshold:: 720 Files larger than this size are stored deflated, without 721 attempting delta compression. Storing large files without 722 delta compression avoids excessive memory usage, at the 723 slight expense of increased disk usage. Additionally files 724 larger than this size are always treated as binary. 725+ 726Default is 512 MiB on all platforms. This should be reasonable 727for most projects as source code and other text files can still 728be delta compressed, but larger binary media files won't be. 729+ 730Common unit suffixes of 'k', 'm', or 'g' are supported. 731 732core.excludesFile:: 733 Specifies the pathname to the file that contains patterns to 734 describe paths that are not meant to be tracked, in addition 735 to '.gitignore' (per-directory) and '.git/info/exclude'. 736 Defaults to `$XDG_CONFIG_HOME/git/ignore`. 737 If `$XDG_CONFIG_HOME` is either not set or empty, `$HOME/.config/git/ignore` 738 is used instead. See linkgit:gitignore[5]. 739 740core.askPass:: 741 Some commands (e.g. svn and http interfaces) that interactively 742 ask for a password can be told to use an external program given 743 via the value of this variable. Can be overridden by the `GIT_ASKPASS` 744 environment variable. If not set, fall back to the value of the 745 `SSH_ASKPASS` environment variable or, failing that, a simple password 746 prompt. The external program shall be given a suitable prompt as 747 command-line argument and write the password on its STDOUT. 748 749core.attributesFile:: 750 In addition to '.gitattributes' (per-directory) and 751 '.git/info/attributes', Git looks into this file for attributes 752 (see linkgit:gitattributes[5]). Path expansions are made the same 753 way as for `core.excludesFile`. Its default value is 754 `$XDG_CONFIG_HOME/git/attributes`. If `$XDG_CONFIG_HOME` is either not 755 set or empty, `$HOME/.config/git/attributes` is used instead. 756 757core.hooksPath:: 758 By default Git will look for your hooks in the 759 '$GIT_DIR/hooks' directory. Set this to different path, 760 e.g. '/etc/git/hooks', and Git will try to find your hooks in 761 that directory, e.g. '/etc/git/hooks/pre-receive' instead of 762 in '$GIT_DIR/hooks/pre-receive'. 763+ 764The path can be either absolute or relative. A relative path is 765taken as relative to the directory where the hooks are run (see 766the "DESCRIPTION" section of linkgit:githooks[5]). 767+ 768This configuration variable is useful in cases where you'd like to 769centrally configure your Git hooks instead of configuring them on a 770per-repository basis, or as a more flexible and centralized 771alternative to having an `init.templateDir` where you've changed 772default hooks. 773 774core.editor:: 775 Commands such as `commit` and `tag` that let you edit 776 messages by launching an editor use the value of this 777 variable when it is set, and the environment variable 778 `GIT_EDITOR` is not set. See linkgit:git-var[1]. 779 780core.commentChar:: 781 Commands such as `commit` and `tag` that let you edit 782 messages consider a line that begins with this character 783 commented, and removes them after the editor returns 784 (default '#'). 785+ 786If set to "auto", `git-commit` would select a character that is not 787the beginning character of any line in existing commit messages. 788 789core.filesRefLockTimeout:: 790 The length of time, in milliseconds, to retry when trying to 791 lock an individual reference. Value 0 means not to retry at 792 all; -1 means to try indefinitely. Default is 100 (i.e., 793 retry for 100ms). 794 795core.packedRefsTimeout:: 796 The length of time, in milliseconds, to retry when trying to 797 lock the `packed-refs` file. Value 0 means not to retry at 798 all; -1 means to try indefinitely. Default is 1000 (i.e., 799 retry for 1 second). 800 801sequence.editor:: 802 Text editor used by `git rebase -i` for editing the rebase instruction file. 803 The value is meant to be interpreted by the shell when it is used. 804 It can be overridden by the `GIT_SEQUENCE_EDITOR` environment variable. 805 When not configured the default commit message editor is used instead. 806 807core.pager:: 808 Text viewer for use by Git commands (e.g., 'less'). The value 809 is meant to be interpreted by the shell. The order of preference 810 is the `$GIT_PAGER` environment variable, then `core.pager` 811 configuration, then `$PAGER`, and then the default chosen at 812 compile time (usually 'less'). 813+ 814When the `LESS` environment variable is unset, Git sets it to `FRX` 815(if `LESS` environment variable is set, Git does not change it at 816all). If you want to selectively override Git's default setting 817for `LESS`, you can set `core.pager` to e.g. `less -S`. This will 818be passed to the shell by Git, which will translate the final 819command to `LESS=FRX less -S`. The environment does not set the 820`S` option but the command line does, instructing less to truncate 821long lines. Similarly, setting `core.pager` to `less -+F` will 822deactivate the `F` option specified by the environment from the 823command-line, deactivating the "quit if one screen" behavior of 824`less`. One can specifically activate some flags for particular 825commands: for example, setting `pager.blame` to `less -S` enables 826line truncation only for `git blame`. 827+ 828Likewise, when the `LV` environment variable is unset, Git sets it 829to `-c`. You can override this setting by exporting `LV` with 830another value or setting `core.pager` to `lv +c`. 831 832core.whitespace:: 833 A comma separated list of common whitespace problems to 834 notice. 'git diff' will use `color.diff.whitespace` to 835 highlight them, and 'git apply --whitespace=error' will 836 consider them as errors. You can prefix `-` to disable 837 any of them (e.g. `-trailing-space`): 838+ 839* `blank-at-eol` treats trailing whitespaces at the end of the line 840 as an error (enabled by default). 841* `space-before-tab` treats a space character that appears immediately 842 before a tab character in the initial indent part of the line as an 843 error (enabled by default). 844* `indent-with-non-tab` treats a line that is indented with space 845 characters instead of the equivalent tabs as an error (not enabled by 846 default). 847* `tab-in-indent` treats a tab character in the initial indent part of 848 the line as an error (not enabled by default). 849* `blank-at-eof` treats blank lines added at the end of file as an error 850 (enabled by default). 851* `trailing-space` is a short-hand to cover both `blank-at-eol` and 852 `blank-at-eof`. 853* `cr-at-eol` treats a carriage-return at the end of line as 854 part of the line terminator, i.e. with it, `trailing-space` 855 does not trigger if the character before such a carriage-return 856 is not a whitespace (not enabled by default). 857* `tabwidth=<n>` tells how many character positions a tab occupies; this 858 is relevant for `indent-with-non-tab` and when Git fixes `tab-in-indent` 859 errors. The default tab width is 8. Allowed values are 1 to 63. 860 861core.fsyncObjectFiles:: 862 This boolean will enable 'fsync()' when writing object files. 863+ 864This is a total waste of time and effort on a filesystem that orders 865data writes properly, but can be useful for filesystems that do not use 866journalling (traditional UNIX filesystems) or that only journal metadata 867and not file contents (OS X's HFS+, or Linux ext3 with "data=writeback"). 868 869core.preloadIndex:: 870 Enable parallel index preload for operations like 'git diff' 871+ 872This can speed up operations like 'git diff' and 'git status' especially 873on filesystems like NFS that have weak caching semantics and thus 874relatively high IO latencies. When enabled, Git will do the 875index comparison to the filesystem data in parallel, allowing 876overlapping IO's. Defaults to true. 877 878core.createObject:: 879 You can set this to 'link', in which case a hardlink followed by 880 a delete of the source are used to make sure that object creation 881 will not overwrite existing objects. 882+ 883On some file system/operating system combinations, this is unreliable. 884Set this config setting to 'rename' there; However, This will remove the 885check that makes sure that existing object files will not get overwritten. 886 887core.notesRef:: 888 When showing commit messages, also show notes which are stored in 889 the given ref. The ref must be fully qualified. If the given 890 ref does not exist, it is not an error but means that no 891 notes should be printed. 892+ 893This setting defaults to "refs/notes/commits", and it can be overridden by 894the `GIT_NOTES_REF` environment variable. See linkgit:git-notes[1]. 895 896core.sparseCheckout:: 897 Enable "sparse checkout" feature. See section "Sparse checkout" in 898 linkgit:git-read-tree[1] for more information. 899 900core.abbrev:: 901 Set the length object names are abbreviated to. If 902 unspecified or set to "auto", an appropriate value is 903 computed based on the approximate number of packed objects 904 in your repository, which hopefully is enough for 905 abbreviated object names to stay unique for some time. 906 The minimum length is 4. 907 908add.ignoreErrors:: 909add.ignore-errors (deprecated):: 910 Tells 'git add' to continue adding files when some files cannot be 911 added due to indexing errors. Equivalent to the `--ignore-errors` 912 option of linkgit:git-add[1]. `add.ignore-errors` is deprecated, 913 as it does not follow the usual naming convention for configuration 914 variables. 915 916alias.*:: 917 Command aliases for the linkgit:git[1] command wrapper - e.g. 918 after defining "alias.last = cat-file commit HEAD", the invocation 919 "git last" is equivalent to "git cat-file commit HEAD". To avoid 920 confusion and troubles with script usage, aliases that 921 hide existing Git commands are ignored. Arguments are split by 922 spaces, the usual shell quoting and escaping is supported. 923 A quote pair or a backslash can be used to quote them. 924+ 925If the alias expansion is prefixed with an exclamation point, 926it will be treated as a shell command. For example, defining 927"alias.new = !gitk --all --not ORIG_HEAD", the invocation 928"git new" is equivalent to running the shell command 929"gitk --all --not ORIG_HEAD". Note that shell commands will be 930executed from the top-level directory of a repository, which may 931not necessarily be the current directory. 932`GIT_PREFIX` is set as returned by running 'git rev-parse --show-prefix' 933from the original current directory. See linkgit:git-rev-parse[1]. 934 935am.keepcr:: 936 If true, git-am will call git-mailsplit for patches in mbox format 937 with parameter `--keep-cr`. In this case git-mailsplit will 938 not remove `\r` from lines ending with `\r\n`. Can be overridden 939 by giving `--no-keep-cr` from the command line. 940 See linkgit:git-am[1], linkgit:git-mailsplit[1]. 941 942am.threeWay:: 943 By default, `git am` will fail if the patch does not apply cleanly. When 944 set to true, this setting tells `git am` to fall back on 3-way merge if 945 the patch records the identity of blobs it is supposed to apply to and 946 we have those blobs available locally (equivalent to giving the `--3way` 947 option from the command line). Defaults to `false`. 948 See linkgit:git-am[1]. 949 950apply.ignoreWhitespace:: 951 When set to 'change', tells 'git apply' to ignore changes in 952 whitespace, in the same way as the `--ignore-space-change` 953 option. 954 When set to one of: no, none, never, false tells 'git apply' to 955 respect all whitespace differences. 956 See linkgit:git-apply[1]. 957 958apply.whitespace:: 959 Tells 'git apply' how to handle whitespaces, in the same way 960 as the `--whitespace` option. See linkgit:git-apply[1]. 961 962blame.showRoot:: 963 Do not treat root commits as boundaries in linkgit:git-blame[1]. 964 This option defaults to false. 965 966blame.blankBoundary:: 967 Show blank commit object name for boundary commits in 968 linkgit:git-blame[1]. This option defaults to false. 969 970blame.showEmail:: 971 Show the author email instead of author name in linkgit:git-blame[1]. 972 This option defaults to false. 973 974blame.date:: 975 Specifies the format used to output dates in linkgit:git-blame[1]. 976 If unset the iso format is used. For supported values, 977 see the discussion of the `--date` option at linkgit:git-log[1]. 978 979branch.autoSetupMerge:: 980 Tells 'git branch' and 'git checkout' to set up new branches 981 so that linkgit:git-pull[1] will appropriately merge from the 982 starting point branch. Note that even if this option is not set, 983 this behavior can be chosen per-branch using the `--track` 984 and `--no-track` options. The valid settings are: `false` -- no 985 automatic setup is done; `true` -- automatic setup is done when the 986 starting point is a remote-tracking branch; `always` -- 987 automatic setup is done when the starting point is either a 988 local branch or remote-tracking 989 branch. This option defaults to true. 990 991branch.autoSetupRebase:: 992 When a new branch is created with 'git branch' or 'git checkout' 993 that tracks another branch, this variable tells Git to set 994 up pull to rebase instead of merge (see "branch.<name>.rebase"). 995 When `never`, rebase is never automatically set to true. 996 When `local`, rebase is set to true for tracked branches of 997 other local branches. 998 When `remote`, rebase is set to true for tracked branches of 999 remote-tracking branches.1000 When `always`, rebase will be set to true for all tracking1001 branches.1002 See "branch.autoSetupMerge" for details on how to set up a1003 branch to track another branch.1004 This option defaults to never.10051006branch.<name>.remote::1007 When on branch <name>, it tells 'git fetch' and 'git push'1008 which remote to fetch from/push to. The remote to push to1009 may be overridden with `remote.pushDefault` (for all branches).1010 The remote to push to, for the current branch, may be further1011 overridden by `branch.<name>.pushRemote`. If no remote is1012 configured, or if you are not on any branch, it defaults to1013 `origin` for fetching and `remote.pushDefault` for pushing.1014 Additionally, `.` (a period) is the current local repository1015 (a dot-repository), see `branch.<name>.merge`'s final note below.10161017branch.<name>.pushRemote::1018 When on branch <name>, it overrides `branch.<name>.remote` for1019 pushing. It also overrides `remote.pushDefault` for pushing1020 from branch <name>. When you pull from one place (e.g. your1021 upstream) and push to another place (e.g. your own publishing1022 repository), you would want to set `remote.pushDefault` to1023 specify the remote to push to for all branches, and use this1024 option to override it for a specific branch.10251026branch.<name>.merge::1027 Defines, together with branch.<name>.remote, the upstream branch1028 for the given branch. It tells 'git fetch'/'git pull'/'git rebase' which1029 branch to merge and can also affect 'git push' (see push.default).1030 When in branch <name>, it tells 'git fetch' the default1031 refspec to be marked for merging in FETCH_HEAD. The value is1032 handled like the remote part of a refspec, and must match a1033 ref which is fetched from the remote given by1034 "branch.<name>.remote".1035 The merge information is used by 'git pull' (which at first calls1036 'git fetch') to lookup the default branch for merging. Without1037 this option, 'git pull' defaults to merge the first refspec fetched.1038 Specify multiple values to get an octopus merge.1039 If you wish to setup 'git pull' so that it merges into <name> from1040 another branch in the local repository, you can point1041 branch.<name>.merge to the desired branch, and use the relative path1042 setting `.` (a period) for branch.<name>.remote.10431044branch.<name>.mergeOptions::1045 Sets default options for merging into branch <name>. The syntax and1046 supported options are the same as those of linkgit:git-merge[1], but1047 option values containing whitespace characters are currently not1048 supported.10491050branch.<name>.rebase::1051 When true, rebase the branch <name> on top of the fetched branch,1052 instead of merging the default branch from the default remote when1053 "git pull" is run. See "pull.rebase" for doing this in a non1054 branch-specific manner.1055+1056When preserve, also pass `--preserve-merges` along to 'git rebase'1057so that locally committed merge commits will not be flattened1058by running 'git pull'.1059+1060When the value is `interactive`, the rebase is run in interactive mode.1061+1062*NOTE*: this is a possibly dangerous operation; do *not* use1063it unless you understand the implications (see linkgit:git-rebase[1]1064for details).10651066branch.<name>.description::1067 Branch description, can be edited with1068 `git branch --edit-description`. Branch description is1069 automatically added in the format-patch cover letter or1070 request-pull summary.10711072browser.<tool>.cmd::1073 Specify the command to invoke the specified browser. The1074 specified command is evaluated in shell with the URLs passed1075 as arguments. (See linkgit:git-web{litdd}browse[1].)10761077browser.<tool>.path::1078 Override the path for the given tool that may be used to1079 browse HTML help (see `-w` option in linkgit:git-help[1]) or a1080 working repository in gitweb (see linkgit:git-instaweb[1]).10811082clean.requireForce::1083 A boolean to make git-clean do nothing unless given -f,1084 -i or -n. Defaults to true.10851086color.branch::1087 A boolean to enable/disable color in the output of1088 linkgit:git-branch[1]. May be set to `always`,1089 `false` (or `never`) or `auto` (or `true`), in which case colors are used1090 only when the output is to a terminal. If unset, then the1091 value of `color.ui` is used (`auto` by default).10921093color.branch.<slot>::1094 Use customized color for branch coloration. `<slot>` is one of1095 `current` (the current branch), `local` (a local branch),1096 `remote` (a remote-tracking branch in refs/remotes/),1097 `upstream` (upstream tracking branch), `plain` (other1098 refs).10991100color.diff::1101 Whether to use ANSI escape sequences to add color to patches.1102 If this is set to `always`, linkgit:git-diff[1],1103 linkgit:git-log[1], and linkgit:git-show[1] will use color1104 for all patches. If it is set to `true` or `auto`, those1105 commands will only use color when output is to the terminal.1106 If unset, then the value of `color.ui` is used (`auto` by1107 default).1108+1109This does not affect linkgit:git-format-patch[1] or the1110'git-diff-{asterisk}' plumbing commands. Can be overridden on the1111command line with the `--color[=<when>]` option.11121113diff.colorMoved::1114 If set to either a valid `<mode>` or a true value, moved lines1115 in a diff are colored differently, for details of valid modes1116 see '--color-moved' in linkgit:git-diff[1]. If simply set to1117 true the default color mode will be used. When set to false,1118 moved lines are not colored.11191120color.diff.<slot>::1121 Use customized color for diff colorization. `<slot>` specifies1122 which part of the patch to use the specified color, and is one1123 of `context` (context text - `plain` is a historical synonym),1124 `meta` (metainformation), `frag`1125 (hunk header), 'func' (function in hunk header), `old` (removed lines),1126 `new` (added lines), `commit` (commit headers), `whitespace`1127 (highlighting whitespace errors), `oldMoved` (deleted lines),1128 `newMoved` (added lines), `oldMovedDimmed`, `oldMovedAlternative`,1129 `oldMovedAlternativeDimmed`, `newMovedDimmed`, `newMovedAlternative`1130 and `newMovedAlternativeDimmed` (See the '<mode>'1131 setting of '--color-moved' in linkgit:git-diff[1] for details).11321133color.decorate.<slot>::1134 Use customized color for 'git log --decorate' output. `<slot>` is one1135 of `branch`, `remoteBranch`, `tag`, `stash` or `HEAD` for local1136 branches, remote-tracking branches, tags, stash and HEAD, respectively.11371138color.grep::1139 When set to `always`, always highlight matches. When `false` (or1140 `never`), never. When set to `true` or `auto`, use color only1141 when the output is written to the terminal. If unset, then the1142 value of `color.ui` is used (`auto` by default).11431144color.grep.<slot>::1145 Use customized color for grep colorization. `<slot>` specifies which1146 part of the line to use the specified color, and is one of1147+1148--1149`context`;;1150 non-matching text in context lines (when using `-A`, `-B`, or `-C`)1151`filename`;;1152 filename prefix (when not using `-h`)1153`function`;;1154 function name lines (when using `-p`)1155`linenumber`;;1156 line number prefix (when using `-n`)1157`match`;;1158 matching text (same as setting `matchContext` and `matchSelected`)1159`matchContext`;;1160 matching text in context lines1161`matchSelected`;;1162 matching text in selected lines1163`selected`;;1164 non-matching text in selected lines1165`separator`;;1166 separators between fields on a line (`:`, `-`, and `=`)1167 and between hunks (`--`)1168--11691170color.interactive::1171 When set to `always`, always use colors for interactive prompts1172 and displays (such as those used by "git-add --interactive" and1173 "git-clean --interactive"). When false (or `never`), never.1174 When set to `true` or `auto`, use colors only when the output is1175 to the terminal. If unset, then the value of `color.ui` is1176 used (`auto` by default).11771178color.interactive.<slot>::1179 Use customized color for 'git add --interactive' and 'git clean1180 --interactive' output. `<slot>` may be `prompt`, `header`, `help`1181 or `error`, for four distinct types of normal output from1182 interactive commands.11831184color.pager::1185 A boolean to enable/disable colored output when the pager is in1186 use (default is true).11871188color.showBranch::1189 A boolean to enable/disable color in the output of1190 linkgit:git-show-branch[1]. May be set to `always`,1191 `false` (or `never`) or `auto` (or `true`), in which case colors are used1192 only when the output is to a terminal. If unset, then the1193 value of `color.ui` is used (`auto` by default).11941195color.status::1196 A boolean to enable/disable color in the output of1197 linkgit:git-status[1]. May be set to `always`,1198 `false` (or `never`) or `auto` (or `true`), in which case colors are used1199 only when the output is to a terminal. If unset, then the1200 value of `color.ui` is used (`auto` by default).12011202color.status.<slot>::1203 Use customized color for status colorization. `<slot>` is1204 one of `header` (the header text of the status message),1205 `added` or `updated` (files which are added but not committed),1206 `changed` (files which are changed but not added in the index),1207 `untracked` (files which are not tracked by Git),1208 `branch` (the current branch),1209 `nobranch` (the color the 'no branch' warning is shown in, defaulting1210 to red),1211 `localBranch` or `remoteBranch` (the local and remote branch names,1212 respectively, when branch and tracking information is displayed in the1213 status short-format), or1214 `unmerged` (files which have unmerged changes).12151216color.ui::1217 This variable determines the default value for variables such1218 as `color.diff` and `color.grep` that control the use of color1219 per command family. Its scope will expand as more commands learn1220 configuration to set a default for the `--color` option. Set it1221 to `false` or `never` if you prefer Git commands not to use1222 color unless enabled explicitly with some other configuration1223 or the `--color` option. Set it to `always` if you want all1224 output not intended for machine consumption to use color, to1225 `true` or `auto` (this is the default since Git 1.8.4) if you1226 want such output to use color when written to the terminal.12271228column.ui::1229 Specify whether supported commands should output in columns.1230 This variable consists of a list of tokens separated by spaces1231 or commas:1232+1233These options control when the feature should be enabled1234(defaults to 'never'):1235+1236--1237`always`;;1238 always show in columns1239`never`;;1240 never show in columns1241`auto`;;1242 show in columns if the output is to the terminal1243--1244+1245These options control layout (defaults to 'column'). Setting any1246of these implies 'always' if none of 'always', 'never', or 'auto' are1247specified.1248+1249--1250`column`;;1251 fill columns before rows1252`row`;;1253 fill rows before columns1254`plain`;;1255 show in one column1256--1257+1258Finally, these options can be combined with a layout option (defaults1259to 'nodense'):1260+1261--1262`dense`;;1263 make unequal size columns to utilize more space1264`nodense`;;1265 make equal size columns1266--12671268column.branch::1269 Specify whether to output branch listing in `git branch` in columns.1270 See `column.ui` for details.12711272column.clean::1273 Specify the layout when list items in `git clean -i`, which always1274 shows files and directories in columns. See `column.ui` for details.12751276column.status::1277 Specify whether to output untracked files in `git status` in columns.1278 See `column.ui` for details.12791280column.tag::1281 Specify whether to output tag listing in `git tag` in columns.1282 See `column.ui` for details.12831284commit.cleanup::1285 This setting overrides the default of the `--cleanup` option in1286 `git commit`. See linkgit:git-commit[1] for details. Changing the1287 default can be useful when you always want to keep lines that begin1288 with comment character `#` in your log message, in which case you1289 would do `git config commit.cleanup whitespace` (note that you will1290 have to remove the help lines that begin with `#` in the commit log1291 template yourself, if you do this).12921293commit.gpgSign::12941295 A boolean to specify whether all commits should be GPG signed.1296 Use of this option when doing operations such as rebase can1297 result in a large number of commits being signed. It may be1298 convenient to use an agent to avoid typing your GPG passphrase1299 several times.13001301commit.status::1302 A boolean to enable/disable inclusion of status information in the1303 commit message template when using an editor to prepare the commit1304 message. Defaults to true.13051306commit.template::1307 Specify the pathname of a file to use as the template for1308 new commit messages.13091310commit.verbose::1311 A boolean or int to specify the level of verbose with `git commit`.1312 See linkgit:git-commit[1].13131314credential.helper::1315 Specify an external helper to be called when a username or1316 password credential is needed; the helper may consult external1317 storage to avoid prompting the user for the credentials. Note1318 that multiple helpers may be defined. See linkgit:gitcredentials[7]1319 for details.13201321credential.useHttpPath::1322 When acquiring credentials, consider the "path" component of an http1323 or https URL to be important. Defaults to false. See1324 linkgit:gitcredentials[7] for more information.13251326credential.username::1327 If no username is set for a network authentication, use this username1328 by default. See credential.<context>.* below, and1329 linkgit:gitcredentials[7].13301331credential.<url>.*::1332 Any of the credential.* options above can be applied selectively to1333 some credentials. For example "credential.https://example.com.username"1334 would set the default username only for https connections to1335 example.com. See linkgit:gitcredentials[7] for details on how URLs are1336 matched.13371338credentialCache.ignoreSIGHUP::1339 Tell git-credential-cache--daemon to ignore SIGHUP, instead of quitting.13401341include::diff-config.txt[]13421343difftool.<tool>.path::1344 Override the path for the given tool. This is useful in case1345 your tool is not in the PATH.13461347difftool.<tool>.cmd::1348 Specify the command to invoke the specified diff tool.1349 The specified command is evaluated in shell with the following1350 variables available: 'LOCAL' is set to the name of the temporary1351 file containing the contents of the diff pre-image and 'REMOTE'1352 is set to the name of the temporary file containing the contents1353 of the diff post-image.13541355difftool.prompt::1356 Prompt before each invocation of the diff tool.13571358fastimport.unpackLimit::1359 If the number of objects imported by linkgit:git-fast-import[1]1360 is below this limit, then the objects will be unpacked into1361 loose object files. However if the number of imported objects1362 equals or exceeds this limit then the pack will be stored as a1363 pack. Storing the pack from a fast-import can make the import1364 operation complete faster, especially on slow filesystems. If1365 not set, the value of `transfer.unpackLimit` is used instead.13661367fetch.recurseSubmodules::1368 This option can be either set to a boolean value or to 'on-demand'.1369 Setting it to a boolean changes the behavior of fetch and pull to1370 unconditionally recurse into submodules when set to true or to not1371 recurse at all when set to false. When set to 'on-demand' (the default1372 value), fetch and pull will only recurse into a populated submodule1373 when its superproject retrieves a commit that updates the submodule's1374 reference.13751376fetch.fsckObjects::1377 If it is set to true, git-fetch-pack will check all fetched1378 objects. It will abort in the case of a malformed object or a1379 broken link. The result of an abort are only dangling objects.1380 Defaults to false. If not set, the value of `transfer.fsckObjects`1381 is used instead.13821383fetch.unpackLimit::1384 If the number of objects fetched over the Git native1385 transfer is below this1386 limit, then the objects will be unpacked into loose object1387 files. However if the number of received objects equals or1388 exceeds this limit then the received pack will be stored as1389 a pack, after adding any missing delta bases. Storing the1390 pack from a push can make the push operation complete faster,1391 especially on slow filesystems. If not set, the value of1392 `transfer.unpackLimit` is used instead.13931394fetch.prune::1395 If true, fetch will automatically behave as if the `--prune`1396 option was given on the command line. See also `remote.<name>.prune`.13971398fetch.output::1399 Control how ref update status is printed. Valid values are1400 `full` and `compact`. Default value is `full`. See section1401 OUTPUT in linkgit:git-fetch[1] for detail.14021403format.attach::1404 Enable multipart/mixed attachments as the default for1405 'format-patch'. The value can also be a double quoted string1406 which will enable attachments as the default and set the1407 value as the boundary. See the --attach option in1408 linkgit:git-format-patch[1].14091410format.from::1411 Provides the default value for the `--from` option to format-patch.1412 Accepts a boolean value, or a name and email address. If false,1413 format-patch defaults to `--no-from`, using commit authors directly in1414 the "From:" field of patch mails. If true, format-patch defaults to1415 `--from`, using your committer identity in the "From:" field of patch1416 mails and including a "From:" field in the body of the patch mail if1417 different. If set to a non-boolean value, format-patch uses that1418 value instead of your committer identity. Defaults to false.14191420format.numbered::1421 A boolean which can enable or disable sequence numbers in patch1422 subjects. It defaults to "auto" which enables it only if there1423 is more than one patch. It can be enabled or disabled for all1424 messages by setting it to "true" or "false". See --numbered1425 option in linkgit:git-format-patch[1].14261427format.headers::1428 Additional email headers to include in a patch to be submitted1429 by mail. See linkgit:git-format-patch[1].14301431format.to::1432format.cc::1433 Additional recipients to include in a patch to be submitted1434 by mail. See the --to and --cc options in1435 linkgit:git-format-patch[1].14361437format.subjectPrefix::1438 The default for format-patch is to output files with the '[PATCH]'1439 subject prefix. Use this variable to change that prefix.14401441format.signature::1442 The default for format-patch is to output a signature containing1443 the Git version number. Use this variable to change that default.1444 Set this variable to the empty string ("") to suppress1445 signature generation.14461447format.signatureFile::1448 Works just like format.signature except the contents of the1449 file specified by this variable will be used as the signature.14501451format.suffix::1452 The default for format-patch is to output files with the suffix1453 `.patch`. Use this variable to change that suffix (make sure to1454 include the dot if you want it).14551456format.pretty::1457 The default pretty format for log/show/whatchanged command,1458 See linkgit:git-log[1], linkgit:git-show[1],1459 linkgit:git-whatchanged[1].14601461format.thread::1462 The default threading style for 'git format-patch'. Can be1463 a boolean value, or `shallow` or `deep`. `shallow` threading1464 makes every mail a reply to the head of the series,1465 where the head is chosen from the cover letter, the1466 `--in-reply-to`, and the first patch mail, in this order.1467 `deep` threading makes every mail a reply to the previous one.1468 A true boolean value is the same as `shallow`, and a false1469 value disables threading.14701471format.signOff::1472 A boolean value which lets you enable the `-s/--signoff` option of1473 format-patch by default. *Note:* Adding the Signed-off-by: line to a1474 patch should be a conscious act and means that you certify you have1475 the rights to submit this work under the same open source license.1476 Please see the 'SubmittingPatches' document for further discussion.14771478format.coverLetter::1479 A boolean that controls whether to generate a cover-letter when1480 format-patch is invoked, but in addition can be set to "auto", to1481 generate a cover-letter only when there's more than one patch.14821483format.outputDirectory::1484 Set a custom directory to store the resulting files instead of the1485 current working directory.14861487format.useAutoBase::1488 A boolean value which lets you enable the `--base=auto` option of1489 format-patch by default.14901491filter.<driver>.clean::1492 The command which is used to convert the content of a worktree1493 file to a blob upon checkin. See linkgit:gitattributes[5] for1494 details.14951496filter.<driver>.smudge::1497 The command which is used to convert the content of a blob1498 object to a worktree file upon checkout. See1499 linkgit:gitattributes[5] for details.15001501fsck.<msg-id>::1502 Allows overriding the message type (error, warn or ignore) of a1503 specific message ID such as `missingEmail`.1504+1505For convenience, fsck prefixes the error/warning with the message ID,1506e.g. "missingEmail: invalid author/committer line - missing email" means1507that setting `fsck.missingEmail = ignore` will hide that issue.1508+1509This feature is intended to support working with legacy repositories1510which cannot be repaired without disruptive changes.15111512fsck.skipList::1513 The path to a sorted list of object names (i.e. one SHA-1 per1514 line) that are known to be broken in a non-fatal way and should1515 be ignored. This feature is useful when an established project1516 should be accepted despite early commits containing errors that1517 can be safely ignored such as invalid committer email addresses.1518 Note: corrupt objects cannot be skipped with this setting.15191520gc.aggressiveDepth::1521 The depth parameter used in the delta compression1522 algorithm used by 'git gc --aggressive'. This defaults1523 to 50.15241525gc.aggressiveWindow::1526 The window size parameter used in the delta compression1527 algorithm used by 'git gc --aggressive'. This defaults1528 to 250.15291530gc.auto::1531 When there are approximately more than this many loose1532 objects in the repository, `git gc --auto` will pack them.1533 Some Porcelain commands use this command to perform a1534 light-weight garbage collection from time to time. The1535 default value is 6700. Setting this to 0 disables it.15361537gc.autoPackLimit::1538 When there are more than this many packs that are not1539 marked with `*.keep` file in the repository, `git gc1540 --auto` consolidates them into one larger pack. The1541 default value is 50. Setting this to 0 disables it.15421543gc.autoDetach::1544 Make `git gc --auto` return immediately and run in background1545 if the system supports it. Default is true.15461547gc.logExpiry::1548 If the file gc.log exists, then `git gc --auto` won't run1549 unless that file is more than 'gc.logExpiry' old. Default is1550 "1.day". See `gc.pruneExpire` for more ways to specify its1551 value.15521553gc.packRefs::1554 Running `git pack-refs` in a repository renders it1555 unclonable by Git versions prior to 1.5.1.2 over dumb1556 transports such as HTTP. This variable determines whether1557 'git gc' runs `git pack-refs`. This can be set to `notbare`1558 to enable it within all non-bare repos or it can be set to a1559 boolean value. The default is `true`.15601561gc.pruneExpire::1562 When 'git gc' is run, it will call 'prune --expire 2.weeks.ago'.1563 Override the grace period with this config variable. The value1564 "now" may be used to disable this grace period and always prune1565 unreachable objects immediately, or "never" may be used to1566 suppress pruning. This feature helps prevent corruption when1567 'git gc' runs concurrently with another process writing to the1568 repository; see the "NOTES" section of linkgit:git-gc[1].15691570gc.worktreePruneExpire::1571 When 'git gc' is run, it calls1572 'git worktree prune --expire 3.months.ago'.1573 This config variable can be used to set a different grace1574 period. The value "now" may be used to disable the grace1575 period and prune `$GIT_DIR/worktrees` immediately, or "never"1576 may be used to suppress pruning.15771578gc.reflogExpire::1579gc.<pattern>.reflogExpire::1580 'git reflog expire' removes reflog entries older than1581 this time; defaults to 90 days. The value "now" expires all1582 entries immediately, and "never" suppresses expiration1583 altogether. With "<pattern>" (e.g.1584 "refs/stash") in the middle the setting applies only to1585 the refs that match the <pattern>.15861587gc.reflogExpireUnreachable::1588gc.<pattern>.reflogExpireUnreachable::1589 'git reflog expire' removes reflog entries older than1590 this time and are not reachable from the current tip;1591 defaults to 30 days. The value "now" expires all entries1592 immediately, and "never" suppresses expiration altogether.1593 With "<pattern>" (e.g. "refs/stash")1594 in the middle, the setting applies only to the refs that1595 match the <pattern>.15961597gc.rerereResolved::1598 Records of conflicted merge you resolved earlier are1599 kept for this many days when 'git rerere gc' is run.1600 You can also use more human-readable "1.month.ago", etc.1601 The default is 60 days. See linkgit:git-rerere[1].16021603gc.rerereUnresolved::1604 Records of conflicted merge you have not resolved are1605 kept for this many days when 'git rerere gc' is run.1606 You can also use more human-readable "1.month.ago", etc.1607 The default is 15 days. See linkgit:git-rerere[1].16081609gitcvs.commitMsgAnnotation::1610 Append this string to each commit message. Set to empty string1611 to disable this feature. Defaults to "via git-CVS emulator".16121613gitcvs.enabled::1614 Whether the CVS server interface is enabled for this repository.1615 See linkgit:git-cvsserver[1].16161617gitcvs.logFile::1618 Path to a log file where the CVS server interface well... logs1619 various stuff. See linkgit:git-cvsserver[1].16201621gitcvs.usecrlfattr::1622 If true, the server will look up the end-of-line conversion1623 attributes for files to determine the `-k` modes to use. If1624 the attributes force Git to treat a file as text,1625 the `-k` mode will be left blank so CVS clients will1626 treat it as text. If they suppress text conversion, the file1627 will be set with '-kb' mode, which suppresses any newline munging1628 the client might otherwise do. If the attributes do not allow1629 the file type to be determined, then `gitcvs.allBinary` is1630 used. See linkgit:gitattributes[5].16311632gitcvs.allBinary::1633 This is used if `gitcvs.usecrlfattr` does not resolve1634 the correct '-kb' mode to use. If true, all1635 unresolved files are sent to the client in1636 mode '-kb'. This causes the client to treat them1637 as binary files, which suppresses any newline munging it1638 otherwise might do. Alternatively, if it is set to "guess",1639 then the contents of the file are examined to decide if1640 it is binary, similar to `core.autocrlf`.16411642gitcvs.dbName::1643 Database used by git-cvsserver to cache revision information1644 derived from the Git repository. The exact meaning depends on the1645 used database driver, for SQLite (which is the default driver) this1646 is a filename. Supports variable substitution (see1647 linkgit:git-cvsserver[1] for details). May not contain semicolons (`;`).1648 Default: '%Ggitcvs.%m.sqlite'16491650gitcvs.dbDriver::1651 Used Perl DBI driver. You can specify any available driver1652 for this here, but it might not work. git-cvsserver is tested1653 with 'DBD::SQLite', reported to work with 'DBD::Pg', and1654 reported *not* to work with 'DBD::mysql'. Experimental feature.1655 May not contain double colons (`:`). Default: 'SQLite'.1656 See linkgit:git-cvsserver[1].16571658gitcvs.dbUser, gitcvs.dbPass::1659 Database user and password. Only useful if setting `gitcvs.dbDriver`,1660 since SQLite has no concept of database users and/or passwords.1661 'gitcvs.dbUser' supports variable substitution (see1662 linkgit:git-cvsserver[1] for details).16631664gitcvs.dbTableNamePrefix::1665 Database table name prefix. Prepended to the names of any1666 database tables used, allowing a single database to be used1667 for several repositories. Supports variable substitution (see1668 linkgit:git-cvsserver[1] for details). Any non-alphabetic1669 characters will be replaced with underscores.16701671All gitcvs variables except for `gitcvs.usecrlfattr` and1672`gitcvs.allBinary` can also be specified as1673'gitcvs.<access_method>.<varname>' (where 'access_method'1674is one of "ext" and "pserver") to make them apply only for the given1675access method.16761677gitweb.category::1678gitweb.description::1679gitweb.owner::1680gitweb.url::1681 See linkgit:gitweb[1] for description.16821683gitweb.avatar::1684gitweb.blame::1685gitweb.grep::1686gitweb.highlight::1687gitweb.patches::1688gitweb.pickaxe::1689gitweb.remote_heads::1690gitweb.showSizes::1691gitweb.snapshot::1692 See linkgit:gitweb.conf[5] for description.16931694grep.lineNumber::1695 If set to true, enable `-n` option by default.16961697grep.patternType::1698 Set the default matching behavior. Using a value of 'basic', 'extended',1699 'fixed', or 'perl' will enable the `--basic-regexp`, `--extended-regexp`,1700 `--fixed-strings`, or `--perl-regexp` option accordingly, while the1701 value 'default' will return to the default matching behavior.17021703grep.extendedRegexp::1704 If set to true, enable `--extended-regexp` option by default. This1705 option is ignored when the `grep.patternType` option is set to a value1706 other than 'default'.17071708grep.threads::1709 Number of grep worker threads to use.1710 See `grep.threads` in linkgit:git-grep[1] for more information.17111712grep.fallbackToNoIndex::1713 If set to true, fall back to git grep --no-index if git grep1714 is executed outside of a git repository. Defaults to false.17151716gpg.program::1717 Use this custom program instead of "`gpg`" found on `$PATH` when1718 making or verifying a PGP signature. The program must support the1719 same command-line interface as GPG, namely, to verify a detached1720 signature, "`gpg --verify $file - <$signature`" is run, and the1721 program is expected to signal a good signature by exiting with1722 code 0, and to generate an ASCII-armored detached signature, the1723 standard input of "`gpg -bsau $key`" is fed with the contents to be1724 signed, and the program is expected to send the result to its1725 standard output.17261727gui.commitMsgWidth::1728 Defines how wide the commit message window is in the1729 linkgit:git-gui[1]. "75" is the default.17301731gui.diffContext::1732 Specifies how many context lines should be used in calls to diff1733 made by the linkgit:git-gui[1]. The default is "5".17341735gui.displayUntracked::1736 Determines if linkgit:git-gui[1] shows untracked files1737 in the file list. The default is "true".17381739gui.encoding::1740 Specifies the default encoding to use for displaying of1741 file contents in linkgit:git-gui[1] and linkgit:gitk[1].1742 It can be overridden by setting the 'encoding' attribute1743 for relevant files (see linkgit:gitattributes[5]).1744 If this option is not set, the tools default to the1745 locale encoding.17461747gui.matchTrackingBranch::1748 Determines if new branches created with linkgit:git-gui[1] should1749 default to tracking remote branches with matching names or1750 not. Default: "false".17511752gui.newBranchTemplate::1753 Is used as suggested name when creating new branches using the1754 linkgit:git-gui[1].17551756gui.pruneDuringFetch::1757 "true" if linkgit:git-gui[1] should prune remote-tracking branches when1758 performing a fetch. The default value is "false".17591760gui.trustmtime::1761 Determines if linkgit:git-gui[1] should trust the file modification1762 timestamp or not. By default the timestamps are not trusted.17631764gui.spellingDictionary::1765 Specifies the dictionary used for spell checking commit messages in1766 the linkgit:git-gui[1]. When set to "none" spell checking is turned1767 off.17681769gui.fastCopyBlame::1770 If true, 'git gui blame' uses `-C` instead of `-C -C` for original1771 location detection. It makes blame significantly faster on huge1772 repositories at the expense of less thorough copy detection.17731774gui.copyBlameThreshold::1775 Specifies the threshold to use in 'git gui blame' original location1776 detection, measured in alphanumeric characters. See the1777 linkgit:git-blame[1] manual for more information on copy detection.17781779gui.blamehistoryctx::1780 Specifies the radius of history context in days to show in1781 linkgit:gitk[1] for the selected commit, when the `Show History1782 Context` menu item is invoked from 'git gui blame'. If this1783 variable is set to zero, the whole history is shown.17841785guitool.<name>.cmd::1786 Specifies the shell command line to execute when the corresponding item1787 of the linkgit:git-gui[1] `Tools` menu is invoked. This option is1788 mandatory for every tool. The command is executed from the root of1789 the working directory, and in the environment it receives the name of1790 the tool as `GIT_GUITOOL`, the name of the currently selected file as1791 'FILENAME', and the name of the current branch as 'CUR_BRANCH' (if1792 the head is detached, 'CUR_BRANCH' is empty).17931794guitool.<name>.needsFile::1795 Run the tool only if a diff is selected in the GUI. It guarantees1796 that 'FILENAME' is not empty.17971798guitool.<name>.noConsole::1799 Run the command silently, without creating a window to display its1800 output.18011802guitool.<name>.noRescan::1803 Don't rescan the working directory for changes after the tool1804 finishes execution.18051806guitool.<name>.confirm::1807 Show a confirmation dialog before actually running the tool.18081809guitool.<name>.argPrompt::1810 Request a string argument from the user, and pass it to the tool1811 through the `ARGS` environment variable. Since requesting an1812 argument implies confirmation, the 'confirm' option has no effect1813 if this is enabled. If the option is set to 'true', 'yes', or '1',1814 the dialog uses a built-in generic prompt; otherwise the exact1815 value of the variable is used.18161817guitool.<name>.revPrompt::1818 Request a single valid revision from the user, and set the1819 `REVISION` environment variable. In other aspects this option1820 is similar to 'argPrompt', and can be used together with it.18211822guitool.<name>.revUnmerged::1823 Show only unmerged branches in the 'revPrompt' subdialog.1824 This is useful for tools similar to merge or rebase, but not1825 for things like checkout or reset.18261827guitool.<name>.title::1828 Specifies the title to use for the prompt dialog. The default1829 is the tool name.18301831guitool.<name>.prompt::1832 Specifies the general prompt string to display at the top of1833 the dialog, before subsections for 'argPrompt' and 'revPrompt'.1834 The default value includes the actual command.18351836help.browser::1837 Specify the browser that will be used to display help in the1838 'web' format. See linkgit:git-help[1].18391840help.format::1841 Override the default help format used by linkgit:git-help[1].1842 Values 'man', 'info', 'web' and 'html' are supported. 'man' is1843 the default. 'web' and 'html' are the same.18441845help.autoCorrect::1846 Automatically correct and execute mistyped commands after1847 waiting for the given number of deciseconds (0.1 sec). If more1848 than one command can be deduced from the entered text, nothing1849 will be executed. If the value of this option is negative,1850 the corrected command will be executed immediately. If the1851 value is 0 - the command will be just shown but not executed.1852 This is the default.18531854help.htmlPath::1855 Specify the path where the HTML documentation resides. File system paths1856 and URLs are supported. HTML pages will be prefixed with this path when1857 help is displayed in the 'web' format. This defaults to the documentation1858 path of your Git installation.18591860http.proxy::1861 Override the HTTP proxy, normally configured using the 'http_proxy',1862 'https_proxy', and 'all_proxy' environment variables (see `curl(1)`). In1863 addition to the syntax understood by curl, it is possible to specify a1864 proxy string with a user name but no password, in which case git will1865 attempt to acquire one in the same way it does for other credentials. See1866 linkgit:gitcredentials[7] for more information. The syntax thus is1867 '[protocol://][user[:password]@]proxyhost[:port]'. This can be overridden1868 on a per-remote basis; see remote.<name>.proxy18691870http.proxyAuthMethod::1871 Set the method with which to authenticate against the HTTP proxy. This1872 only takes effect if the configured proxy string contains a user name part1873 (i.e. is of the form 'user@host' or 'user@host:port'). This can be1874 overridden on a per-remote basis; see `remote.<name>.proxyAuthMethod`.1875 Both can be overridden by the `GIT_HTTP_PROXY_AUTHMETHOD` environment1876 variable. Possible values are:1877+1878--1879* `anyauth` - Automatically pick a suitable authentication method. It is1880 assumed that the proxy answers an unauthenticated request with a 4071881 status code and one or more Proxy-authenticate headers with supported1882 authentication methods. This is the default.1883* `basic` - HTTP Basic authentication1884* `digest` - HTTP Digest authentication; this prevents the password from being1885 transmitted to the proxy in clear text1886* `negotiate` - GSS-Negotiate authentication (compare the --negotiate option1887 of `curl(1)`)1888* `ntlm` - NTLM authentication (compare the --ntlm option of `curl(1)`)1889--18901891http.emptyAuth::1892 Attempt authentication without seeking a username or password. This1893 can be used to attempt GSS-Negotiate authentication without specifying1894 a username in the URL, as libcurl normally requires a username for1895 authentication.18961897http.delegation::1898 Control GSSAPI credential delegation. The delegation is disabled1899 by default in libcurl since version 7.21.7. Set parameter to tell1900 the server what it is allowed to delegate when it comes to user1901 credentials. Used with GSS/kerberos. Possible values are:1902+1903--1904* `none` - Don't allow any delegation.1905* `policy` - Delegates if and only if the OK-AS-DELEGATE flag is set in the1906 Kerberos service ticket, which is a matter of realm policy.1907* `always` - Unconditionally allow the server to delegate.1908--190919101911http.extraHeader::1912 Pass an additional HTTP header when communicating with a server. If1913 more than one such entry exists, all of them are added as extra1914 headers. To allow overriding the settings inherited from the system1915 config, an empty value will reset the extra headers to the empty list.19161917http.cookieFile::1918 The pathname of a file containing previously stored cookie lines,1919 which should be used1920 in the Git http session, if they match the server. The file format1921 of the file to read cookies from should be plain HTTP headers or1922 the Netscape/Mozilla cookie file format (see `curl(1)`).1923 NOTE that the file specified with http.cookieFile is used only as1924 input unless http.saveCookies is set.19251926http.saveCookies::1927 If set, store cookies received during requests to the file specified by1928 http.cookieFile. Has no effect if http.cookieFile is unset.19291930http.sslVersion::1931 The SSL version to use when negotiating an SSL connection, if you1932 want to force the default. The available and default version1933 depend on whether libcurl was built against NSS or OpenSSL and the1934 particular configuration of the crypto library in use. Internally1935 this sets the 'CURLOPT_SSL_VERSION' option; see the libcurl1936 documentation for more details on the format of this option and1937 for the ssl version supported. Actually the possible values of1938 this option are:19391940 - sslv21941 - sslv31942 - tlsv11943 - tlsv1.01944 - tlsv1.11945 - tlsv1.219461947+1948Can be overridden by the `GIT_SSL_VERSION` environment variable.1949To force git to use libcurl's default ssl version and ignore any1950explicit http.sslversion option, set `GIT_SSL_VERSION` to the1951empty string.19521953http.sslCipherList::1954 A list of SSL ciphers to use when negotiating an SSL connection.1955 The available ciphers depend on whether libcurl was built against1956 NSS or OpenSSL and the particular configuration of the crypto1957 library in use. Internally this sets the 'CURLOPT_SSL_CIPHER_LIST'1958 option; see the libcurl documentation for more details on the format1959 of this list.1960+1961Can be overridden by the `GIT_SSL_CIPHER_LIST` environment variable.1962To force git to use libcurl's default cipher list and ignore any1963explicit http.sslCipherList option, set `GIT_SSL_CIPHER_LIST` to the1964empty string.19651966http.sslVerify::1967 Whether to verify the SSL certificate when fetching or pushing1968 over HTTPS. Can be overridden by the `GIT_SSL_NO_VERIFY` environment1969 variable.19701971http.sslCert::1972 File containing the SSL certificate when fetching or pushing1973 over HTTPS. Can be overridden by the `GIT_SSL_CERT` environment1974 variable.19751976http.sslKey::1977 File containing the SSL private key when fetching or pushing1978 over HTTPS. Can be overridden by the `GIT_SSL_KEY` environment1979 variable.19801981http.sslCertPasswordProtected::1982 Enable Git's password prompt for the SSL certificate. Otherwise1983 OpenSSL will prompt the user, possibly many times, if the1984 certificate or private key is encrypted. Can be overridden by the1985 `GIT_SSL_CERT_PASSWORD_PROTECTED` environment variable.19861987http.sslCAInfo::1988 File containing the certificates to verify the peer with when1989 fetching or pushing over HTTPS. Can be overridden by the1990 `GIT_SSL_CAINFO` environment variable.19911992http.sslCAPath::1993 Path containing files with the CA certificates to verify the peer1994 with when fetching or pushing over HTTPS. Can be overridden1995 by the `GIT_SSL_CAPATH` environment variable.19961997http.pinnedpubkey::1998 Public key of the https service. It may either be the filename of1999 a PEM or DER encoded public key file or a string starting with2000 'sha256//' followed by the base64 encoded sha256 hash of the2001 public key. See also libcurl 'CURLOPT_PINNEDPUBLICKEY'. git will2002 exit with an error if this option is set but not supported by2003 cURL.20042005http.sslTry::2006 Attempt to use AUTH SSL/TLS and encrypted data transfers2007 when connecting via regular FTP protocol. This might be needed2008 if the FTP server requires it for security reasons or you wish2009 to connect securely whenever remote FTP server supports it.2010 Default is false since it might trigger certificate verification2011 errors on misconfigured servers.20122013http.maxRequests::2014 How many HTTP requests to launch in parallel. Can be overridden2015 by the `GIT_HTTP_MAX_REQUESTS` environment variable. Default is 5.20162017http.minSessions::2018 The number of curl sessions (counted across slots) to be kept across2019 requests. They will not be ended with curl_easy_cleanup() until2020 http_cleanup() is invoked. If USE_CURL_MULTI is not defined, this2021 value will be capped at 1. Defaults to 1.20222023http.postBuffer::2024 Maximum size in bytes of the buffer used by smart HTTP2025 transports when POSTing data to the remote system.2026 For requests larger than this buffer size, HTTP/1.1 and2027 Transfer-Encoding: chunked is used to avoid creating a2028 massive pack file locally. Default is 1 MiB, which is2029 sufficient for most requests.20302031http.lowSpeedLimit, http.lowSpeedTime::2032 If the HTTP transfer speed is less than 'http.lowSpeedLimit'2033 for longer than 'http.lowSpeedTime' seconds, the transfer is aborted.2034 Can be overridden by the `GIT_HTTP_LOW_SPEED_LIMIT` and2035 `GIT_HTTP_LOW_SPEED_TIME` environment variables.20362037http.noEPSV::2038 A boolean which disables using of EPSV ftp command by curl.2039 This can helpful with some "poor" ftp servers which don't2040 support EPSV mode. Can be overridden by the `GIT_CURL_FTP_NO_EPSV`2041 environment variable. Default is false (curl will use EPSV).20422043http.userAgent::2044 The HTTP USER_AGENT string presented to an HTTP server. The default2045 value represents the version of the client Git such as git/1.7.1.2046 This option allows you to override this value to a more common value2047 such as Mozilla/4.0. This may be necessary, for instance, if2048 connecting through a firewall that restricts HTTP connections to a set2049 of common USER_AGENT strings (but not including those like git/1.7.1).2050 Can be overridden by the `GIT_HTTP_USER_AGENT` environment variable.20512052http.followRedirects::2053 Whether git should follow HTTP redirects. If set to `true`, git2054 will transparently follow any redirect issued by a server it2055 encounters. If set to `false`, git will treat all redirects as2056 errors. If set to `initial`, git will follow redirects only for2057 the initial request to a remote, but not for subsequent2058 follow-up HTTP requests. Since git uses the redirected URL as2059 the base for the follow-up requests, this is generally2060 sufficient. The default is `initial`.20612062http.<url>.*::2063 Any of the http.* options above can be applied selectively to some URLs.2064 For a config key to match a URL, each element of the config key is2065 compared to that of the URL, in the following order:2066+2067--2068. Scheme (e.g., `https` in `https://example.com/`). This field2069 must match exactly between the config key and the URL.20702071. Host/domain name (e.g., `example.com` in `https://example.com/`).2072 This field must match between the config key and the URL. It is2073 possible to specify a `*` as part of the host name to match all subdomains2074 at this level. `https://*.example.com/` for example would match2075 `https://foo.example.com/`, but not `https://foo.bar.example.com/`.20762077. Port number (e.g., `8080` in `http://example.com:8080/`).2078 This field must match exactly between the config key and the URL.2079 Omitted port numbers are automatically converted to the correct2080 default for the scheme before matching.20812082. Path (e.g., `repo.git` in `https://example.com/repo.git`). The2083 path field of the config key must match the path field of the URL2084 either exactly or as a prefix of slash-delimited path elements. This means2085 a config key with path `foo/` matches URL path `foo/bar`. A prefix can only2086 match on a slash (`/`) boundary. Longer matches take precedence (so a config2087 key with path `foo/bar` is a better match to URL path `foo/bar` than a config2088 key with just path `foo/`).20892090. User name (e.g., `user` in `https://user@example.com/repo.git`). If2091 the config key has a user name it must match the user name in the2092 URL exactly. If the config key does not have a user name, that2093 config key will match a URL with any user name (including none),2094 but at a lower precedence than a config key with a user name.2095--2096+2097The list above is ordered by decreasing precedence; a URL that matches2098a config key's path is preferred to one that matches its user name. For example,2099if the URL is `https://user@example.com/foo/bar` a config key match of2100`https://example.com/foo` will be preferred over a config key match of2101`https://user@example.com`.2102+2103All URLs are normalized before attempting any matching (the password part,2104if embedded in the URL, is always ignored for matching purposes) so that2105equivalent URLs that are simply spelled differently will match properly.2106Environment variable settings always override any matches. The URLs that are2107matched against are those given directly to Git commands. This means any URLs2108visited as a result of a redirection do not participate in matching.21092110ssh.variant::2111 Depending on the value of the environment variables `GIT_SSH` or2112 `GIT_SSH_COMMAND`, or the config setting `core.sshCommand`, Git2113 auto-detects whether to adjust its command-line parameters for use2114 with plink or tortoiseplink, as opposed to the default (OpenSSH).2115+2116The config variable `ssh.variant` can be set to override this auto-detection;2117valid values are `ssh`, `plink`, `putty` or `tortoiseplink`. Any other value2118will be treated as normal ssh. This setting can be overridden via the2119environment variable `GIT_SSH_VARIANT`.21202121i18n.commitEncoding::2122 Character encoding the commit messages are stored in; Git itself2123 does not care per se, but this information is necessary e.g. when2124 importing commits from emails or in the gitk graphical history2125 browser (and possibly at other places in the future or in other2126 porcelains). See e.g. linkgit:git-mailinfo[1]. Defaults to 'utf-8'.21272128i18n.logOutputEncoding::2129 Character encoding the commit messages are converted to when2130 running 'git log' and friends.21312132imap::2133 The configuration variables in the 'imap' section are described2134 in linkgit:git-imap-send[1].21352136index.version::2137 Specify the version with which new index files should be2138 initialized. This does not affect existing repositories.21392140init.templateDir::2141 Specify the directory from which templates will be copied.2142 (See the "TEMPLATE DIRECTORY" section of linkgit:git-init[1].)21432144instaweb.browser::2145 Specify the program that will be used to browse your working2146 repository in gitweb. See linkgit:git-instaweb[1].21472148instaweb.httpd::2149 The HTTP daemon command-line to start gitweb on your working2150 repository. See linkgit:git-instaweb[1].21512152instaweb.local::2153 If true the web server started by linkgit:git-instaweb[1] will2154 be bound to the local IP (127.0.0.1).21552156instaweb.modulePath::2157 The default module path for linkgit:git-instaweb[1] to use2158 instead of /usr/lib/apache2/modules. Only used if httpd2159 is Apache.21602161instaweb.port::2162 The port number to bind the gitweb httpd to. See2163 linkgit:git-instaweb[1].21642165interactive.singleKey::2166 In interactive commands, allow the user to provide one-letter2167 input with a single key (i.e., without hitting enter).2168 Currently this is used by the `--patch` mode of2169 linkgit:git-add[1], linkgit:git-checkout[1], linkgit:git-commit[1],2170 linkgit:git-reset[1], and linkgit:git-stash[1]. Note that this2171 setting is silently ignored if portable keystroke input2172 is not available; requires the Perl module Term::ReadKey.21732174interactive.diffFilter::2175 When an interactive command (such as `git add --patch`) shows2176 a colorized diff, git will pipe the diff through the shell2177 command defined by this configuration variable. The command may2178 mark up the diff further for human consumption, provided that it2179 retains a one-to-one correspondence with the lines in the2180 original diff. Defaults to disabled (no filtering).21812182log.abbrevCommit::2183 If true, makes linkgit:git-log[1], linkgit:git-show[1], and2184 linkgit:git-whatchanged[1] assume `--abbrev-commit`. You may2185 override this option with `--no-abbrev-commit`.21862187log.date::2188 Set the default date-time mode for the 'log' command.2189 Setting a value for log.date is similar to using 'git log''s2190 `--date` option. See linkgit:git-log[1] for details.21912192log.decorate::2193 Print out the ref names of any commits that are shown by the log2194 command. If 'short' is specified, the ref name prefixes 'refs/heads/',2195 'refs/tags/' and 'refs/remotes/' will not be printed. If 'full' is2196 specified, the full ref name (including prefix) will be printed.2197 If 'auto' is specified, then if the output is going to a terminal,2198 the ref names are shown as if 'short' were given, otherwise no ref2199 names are shown. This is the same as the `--decorate` option2200 of the `git log`.22012202log.follow::2203 If `true`, `git log` will act as if the `--follow` option was used when2204 a single <path> is given. This has the same limitations as `--follow`,2205 i.e. it cannot be used to follow multiple files and does not work well2206 on non-linear history.22072208log.graphColors::2209 A list of colors, separated by commas, that can be used to draw2210 history lines in `git log --graph`.22112212log.showRoot::2213 If true, the initial commit will be shown as a big creation event.2214 This is equivalent to a diff against an empty tree.2215 Tools like linkgit:git-log[1] or linkgit:git-whatchanged[1], which2216 normally hide the root commit will now show it. True by default.22172218log.showSignature::2219 If true, makes linkgit:git-log[1], linkgit:git-show[1], and2220 linkgit:git-whatchanged[1] assume `--show-signature`.22212222log.mailmap::2223 If true, makes linkgit:git-log[1], linkgit:git-show[1], and2224 linkgit:git-whatchanged[1] assume `--use-mailmap`.22252226mailinfo.scissors::2227 If true, makes linkgit:git-mailinfo[1] (and therefore2228 linkgit:git-am[1]) act by default as if the --scissors option2229 was provided on the command-line. When active, this features2230 removes everything from the message body before a scissors2231 line (i.e. consisting mainly of ">8", "8<" and "-").22322233mailmap.file::2234 The location of an augmenting mailmap file. The default2235 mailmap, located in the root of the repository, is loaded2236 first, then the mailmap file pointed to by this variable.2237 The location of the mailmap file may be in a repository2238 subdirectory, or somewhere outside of the repository itself.2239 See linkgit:git-shortlog[1] and linkgit:git-blame[1].22402241mailmap.blob::2242 Like `mailmap.file`, but consider the value as a reference to a2243 blob in the repository. If both `mailmap.file` and2244 `mailmap.blob` are given, both are parsed, with entries from2245 `mailmap.file` taking precedence. In a bare repository, this2246 defaults to `HEAD:.mailmap`. In a non-bare repository, it2247 defaults to empty.22482249man.viewer::2250 Specify the programs that may be used to display help in the2251 'man' format. See linkgit:git-help[1].22522253man.<tool>.cmd::2254 Specify the command to invoke the specified man viewer. The2255 specified command is evaluated in shell with the man page2256 passed as argument. (See linkgit:git-help[1].)22572258man.<tool>.path::2259 Override the path for the given tool that may be used to2260 display help in the 'man' format. See linkgit:git-help[1].22612262include::merge-config.txt[]22632264mergetool.<tool>.path::2265 Override the path for the given tool. This is useful in case2266 your tool is not in the PATH.22672268mergetool.<tool>.cmd::2269 Specify the command to invoke the specified merge tool. The2270 specified command is evaluated in shell with the following2271 variables available: 'BASE' is the name of a temporary file2272 containing the common base of the files to be merged, if available;2273 'LOCAL' is the name of a temporary file containing the contents of2274 the file on the current branch; 'REMOTE' is the name of a temporary2275 file containing the contents of the file from the branch being2276 merged; 'MERGED' contains the name of the file to which the merge2277 tool should write the results of a successful merge.22782279mergetool.<tool>.trustExitCode::2280 For a custom merge command, specify whether the exit code of2281 the merge command can be used to determine whether the merge was2282 successful. If this is not set to true then the merge target file2283 timestamp is checked and the merge assumed to have been successful2284 if the file has been updated, otherwise the user is prompted to2285 indicate the success of the merge.22862287mergetool.meld.hasOutput::2288 Older versions of `meld` do not support the `--output` option.2289 Git will attempt to detect whether `meld` supports `--output`2290 by inspecting the output of `meld --help`. Configuring2291 `mergetool.meld.hasOutput` will make Git skip these checks and2292 use the configured value instead. Setting `mergetool.meld.hasOutput`2293 to `true` tells Git to unconditionally use the `--output` option,2294 and `false` avoids using `--output`.22952296mergetool.keepBackup::2297 After performing a merge, the original file with conflict markers2298 can be saved as a file with a `.orig` extension. If this variable2299 is set to `false` then this file is not preserved. Defaults to2300 `true` (i.e. keep the backup files).23012302mergetool.keepTemporaries::2303 When invoking a custom merge tool, Git uses a set of temporary2304 files to pass to the tool. If the tool returns an error and this2305 variable is set to `true`, then these temporary files will be2306 preserved, otherwise they will be removed after the tool has2307 exited. Defaults to `false`.23082309mergetool.writeToTemp::2310 Git writes temporary 'BASE', 'LOCAL', and 'REMOTE' versions of2311 conflicting files in the worktree by default. Git will attempt2312 to use a temporary directory for these files when set `true`.2313 Defaults to `false`.23142315mergetool.prompt::2316 Prompt before each invocation of the merge resolution program.23172318notes.mergeStrategy::2319 Which merge strategy to choose by default when resolving notes2320 conflicts. Must be one of `manual`, `ours`, `theirs`, `union`, or2321 `cat_sort_uniq`. Defaults to `manual`. See "NOTES MERGE STRATEGIES"2322 section of linkgit:git-notes[1] for more information on each strategy.23232324notes.<name>.mergeStrategy::2325 Which merge strategy to choose when doing a notes merge into2326 refs/notes/<name>. This overrides the more general2327 "notes.mergeStrategy". See the "NOTES MERGE STRATEGIES" section in2328 linkgit:git-notes[1] for more information on the available strategies.23292330notes.displayRef::2331 The (fully qualified) refname from which to show notes when2332 showing commit messages. The value of this variable can be set2333 to a glob, in which case notes from all matching refs will be2334 shown. You may also specify this configuration variable2335 several times. A warning will be issued for refs that do not2336 exist, but a glob that does not match any refs is silently2337 ignored.2338+2339This setting can be overridden with the `GIT_NOTES_DISPLAY_REF`2340environment variable, which must be a colon separated list of refs or2341globs.2342+2343The effective value of "core.notesRef" (possibly overridden by2344GIT_NOTES_REF) is also implicitly added to the list of refs to be2345displayed.23462347notes.rewrite.<command>::2348 When rewriting commits with <command> (currently `amend` or2349 `rebase`) and this variable is set to `true`, Git2350 automatically copies your notes from the original to the2351 rewritten commit. Defaults to `true`, but see2352 "notes.rewriteRef" below.23532354notes.rewriteMode::2355 When copying notes during a rewrite (see the2356 "notes.rewrite.<command>" option), determines what to do if2357 the target commit already has a note. Must be one of2358 `overwrite`, `concatenate`, `cat_sort_uniq`, or `ignore`.2359 Defaults to `concatenate`.2360+2361This setting can be overridden with the `GIT_NOTES_REWRITE_MODE`2362environment variable.23632364notes.rewriteRef::2365 When copying notes during a rewrite, specifies the (fully2366 qualified) ref whose notes should be copied. The ref may be a2367 glob, in which case notes in all matching refs will be copied.2368 You may also specify this configuration several times.2369+2370Does not have a default value; you must configure this variable to2371enable note rewriting. Set it to `refs/notes/commits` to enable2372rewriting for the default commit notes.2373+2374This setting can be overridden with the `GIT_NOTES_REWRITE_REF`2375environment variable, which must be a colon separated list of refs or2376globs.23772378pack.window::2379 The size of the window used by linkgit:git-pack-objects[1] when no2380 window size is given on the command line. Defaults to 10.23812382pack.depth::2383 The maximum delta depth used by linkgit:git-pack-objects[1] when no2384 maximum depth is given on the command line. Defaults to 50.23852386pack.windowMemory::2387 The maximum size of memory that is consumed by each thread2388 in linkgit:git-pack-objects[1] for pack window memory when2389 no limit is given on the command line. The value can be2390 suffixed with "k", "m", or "g". When left unconfigured (or2391 set explicitly to 0), there will be no limit.23922393pack.compression::2394 An integer -1..9, indicating the compression level for objects2395 in a pack file. -1 is the zlib default. 0 means no2396 compression, and 1..9 are various speed/size tradeoffs, 9 being2397 slowest. If not set, defaults to core.compression. If that is2398 not set, defaults to -1, the zlib default, which is "a default2399 compromise between speed and compression (currently equivalent2400 to level 6)."2401+2402Note that changing the compression level will not automatically recompress2403all existing objects. You can force recompression by passing the -F option2404to linkgit:git-repack[1].24052406pack.deltaCacheSize::2407 The maximum memory in bytes used for caching deltas in2408 linkgit:git-pack-objects[1] before writing them out to a pack.2409 This cache is used to speed up the writing object phase by not2410 having to recompute the final delta result once the best match2411 for all objects is found. Repacking large repositories on machines2412 which are tight with memory might be badly impacted by this though,2413 especially if this cache pushes the system into swapping.2414 A value of 0 means no limit. The smallest size of 1 byte may be2415 used to virtually disable this cache. Defaults to 256 MiB.24162417pack.deltaCacheLimit::2418 The maximum size of a delta, that is cached in2419 linkgit:git-pack-objects[1]. This cache is used to speed up the2420 writing object phase by not having to recompute the final delta2421 result once the best match for all objects is found. Defaults to 1000.24222423pack.threads::2424 Specifies the number of threads to spawn when searching for best2425 delta matches. This requires that linkgit:git-pack-objects[1]2426 be compiled with pthreads otherwise this option is ignored with a2427 warning. This is meant to reduce packing time on multiprocessor2428 machines. The required amount of memory for the delta search window2429 is however multiplied by the number of threads.2430 Specifying 0 will cause Git to auto-detect the number of CPU's2431 and set the number of threads accordingly.24322433pack.indexVersion::2434 Specify the default pack index version. Valid values are 1 for2435 legacy pack index used by Git versions prior to 1.5.2, and 2 for2436 the new pack index with capabilities for packs larger than 4 GB2437 as well as proper protection against the repacking of corrupted2438 packs. Version 2 is the default. Note that version 2 is enforced2439 and this config option ignored whenever the corresponding pack is2440 larger than 2 GB.2441+2442If you have an old Git that does not understand the version 2 `*.idx` file,2443cloning or fetching over a non native protocol (e.g. "http")2444that will copy both `*.pack` file and corresponding `*.idx` file from the2445other side may give you a repository that cannot be accessed with your2446older version of Git. If the `*.pack` file is smaller than 2 GB, however,2447you can use linkgit:git-index-pack[1] on the *.pack file to regenerate2448the `*.idx` file.24492450pack.packSizeLimit::2451 The maximum size of a pack. This setting only affects2452 packing to a file when repacking, i.e. the git:// protocol2453 is unaffected. It can be overridden by the `--max-pack-size`2454 option of linkgit:git-repack[1]. Reaching this limit results2455 in the creation of multiple packfiles; which in turn prevents2456 bitmaps from being created.2457 The minimum size allowed is limited to 1 MiB.2458 The default is unlimited.2459 Common unit suffixes of 'k', 'm', or 'g' are2460 supported.24612462pack.useBitmaps::2463 When true, git will use pack bitmaps (if available) when packing2464 to stdout (e.g., during the server side of a fetch). Defaults to2465 true. You should not generally need to turn this off unless2466 you are debugging pack bitmaps.24672468pack.writeBitmaps (deprecated)::2469 This is a deprecated synonym for `repack.writeBitmaps`.24702471pack.writeBitmapHashCache::2472 When true, git will include a "hash cache" section in the bitmap2473 index (if one is written). This cache can be used to feed git's2474 delta heuristics, potentially leading to better deltas between2475 bitmapped and non-bitmapped objects (e.g., when serving a fetch2476 between an older, bitmapped pack and objects that have been2477 pushed since the last gc). The downside is that it consumes 42478 bytes per object of disk space, and that JGit's bitmap2479 implementation does not understand it, causing it to complain if2480 Git and JGit are used on the same repository. Defaults to false.24812482pager.<cmd>::2483 If the value is boolean, turns on or off pagination of the2484 output of a particular Git subcommand when writing to a tty.2485 Otherwise, turns on pagination for the subcommand using the2486 pager specified by the value of `pager.<cmd>`. If `--paginate`2487 or `--no-pager` is specified on the command line, it takes2488 precedence over this option. To disable pagination for all2489 commands, set `core.pager` or `GIT_PAGER` to `cat`.24902491pretty.<name>::2492 Alias for a --pretty= format string, as specified in2493 linkgit:git-log[1]. Any aliases defined here can be used just2494 as the built-in pretty formats could. For example,2495 running `git config pretty.changelog "format:* %H %s"`2496 would cause the invocation `git log --pretty=changelog`2497 to be equivalent to running `git log "--pretty=format:* %H %s"`.2498 Note that an alias with the same name as a built-in format2499 will be silently ignored.25002501protocol.allow::2502 If set, provide a user defined default policy for all protocols which2503 don't explicitly have a policy (`protocol.<name>.allow`). By default,2504 if unset, known-safe protocols (http, https, git, ssh, file) have a2505 default policy of `always`, known-dangerous protocols (ext) have a2506 default policy of `never`, and all other protocols have a default2507 policy of `user`. Supported policies:2508+2509--25102511* `always` - protocol is always able to be used.25122513* `never` - protocol is never able to be used.25142515* `user` - protocol is only able to be used when `GIT_PROTOCOL_FROM_USER` is2516 either unset or has a value of 1. This policy should be used when you want a2517 protocol to be directly usable by the user but don't want it used by commands which2518 execute clone/fetch/push commands without user input, e.g. recursive2519 submodule initialization.25202521--25222523protocol.<name>.allow::2524 Set a policy to be used by protocol `<name>` with clone/fetch/push2525 commands. See `protocol.allow` above for the available policies.2526+2527The protocol names currently used by git are:2528+2529--2530 - `file`: any local file-based path (including `file://` URLs,2531 or local paths)25322533 - `git`: the anonymous git protocol over a direct TCP2534 connection (or proxy, if configured)25352536 - `ssh`: git over ssh (including `host:path` syntax,2537 `ssh://`, etc).25382539 - `http`: git over http, both "smart http" and "dumb http".2540 Note that this does _not_ include `https`; if you want to configure2541 both, you must do so individually.25422543 - any external helpers are named by their protocol (e.g., use2544 `hg` to allow the `git-remote-hg` helper)2545--25462547pull.ff::2548 By default, Git does not create an extra merge commit when merging2549 a commit that is a descendant of the current commit. Instead, the2550 tip of the current branch is fast-forwarded. When set to `false`,2551 this variable tells Git to create an extra merge commit in such2552 a case (equivalent to giving the `--no-ff` option from the command2553 line). When set to `only`, only such fast-forward merges are2554 allowed (equivalent to giving the `--ff-only` option from the2555 command line). This setting overrides `merge.ff` when pulling.25562557pull.rebase::2558 When true, rebase branches on top of the fetched branch, instead2559 of merging the default branch from the default remote when "git2560 pull" is run. See "branch.<name>.rebase" for setting this on a2561 per-branch basis.2562+2563When preserve, also pass `--preserve-merges` along to 'git rebase'2564so that locally committed merge commits will not be flattened2565by running 'git pull'.2566+2567When the value is `interactive`, the rebase is run in interactive mode.2568+2569*NOTE*: this is a possibly dangerous operation; do *not* use2570it unless you understand the implications (see linkgit:git-rebase[1]2571for details).25722573pull.octopus::2574 The default merge strategy to use when pulling multiple branches2575 at once.25762577pull.twohead::2578 The default merge strategy to use when pulling a single branch.25792580push.default::2581 Defines the action `git push` should take if no refspec is2582 explicitly given. Different values are well-suited for2583 specific workflows; for instance, in a purely central workflow2584 (i.e. the fetch source is equal to the push destination),2585 `upstream` is probably what you want. Possible values are:2586+2587--25882589* `nothing` - do not push anything (error out) unless a refspec is2590 explicitly given. This is primarily meant for people who want to2591 avoid mistakes by always being explicit.25922593* `current` - push the current branch to update a branch with the same2594 name on the receiving end. Works in both central and non-central2595 workflows.25962597* `upstream` - push the current branch back to the branch whose2598 changes are usually integrated into the current branch (which is2599 called `@{upstream}`). This mode only makes sense if you are2600 pushing to the same repository you would normally pull from2601 (i.e. central workflow).26022603* `tracking` - This is a deprecated synonym for `upstream`.26042605* `simple` - in centralized workflow, work like `upstream` with an2606 added safety to refuse to push if the upstream branch's name is2607 different from the local one.2608+2609When pushing to a remote that is different from the remote you normally2610pull from, work as `current`. This is the safest option and is suited2611for beginners.2612+2613This mode has become the default in Git 2.0.26142615* `matching` - push all branches having the same name on both ends.2616 This makes the repository you are pushing to remember the set of2617 branches that will be pushed out (e.g. if you always push 'maint'2618 and 'master' there and no other branches, the repository you push2619 to will have these two branches, and your local 'maint' and2620 'master' will be pushed there).2621+2622To use this mode effectively, you have to make sure _all_ the2623branches you would push out are ready to be pushed out before2624running 'git push', as the whole point of this mode is to allow you2625to push all of the branches in one go. If you usually finish work2626on only one branch and push out the result, while other branches are2627unfinished, this mode is not for you. Also this mode is not2628suitable for pushing into a shared central repository, as other2629people may add new branches there, or update the tip of existing2630branches outside your control.2631+2632This used to be the default, but not since Git 2.0 (`simple` is the2633new default).26342635--26362637push.followTags::2638 If set to true enable `--follow-tags` option by default. You2639 may override this configuration at time of push by specifying2640 `--no-follow-tags`.26412642push.gpgSign::2643 May be set to a boolean value, or the string 'if-asked'. A true2644 value causes all pushes to be GPG signed, as if `--signed` is2645 passed to linkgit:git-push[1]. The string 'if-asked' causes2646 pushes to be signed if the server supports it, as if2647 `--signed=if-asked` is passed to 'git push'. A false value may2648 override a value from a lower-priority config file. An explicit2649 command-line flag always overrides this config option.26502651push.pushOption::2652 When no `--push-option=<option>` argument is given from the2653 command line, `git push` behaves as if each <value> of2654 this variable is given as `--push-option=<value>`.2655+2656This is a multi-valued variable, and an empty value can be used in a2657higher priority configuration file (e.g. `.git/config` in a2658repository) to clear the values inherited from a lower priority2659configuration files (e.g. `$HOME/.gitconfig`).2660+2661--26622663Example:26642665/etc/gitconfig2666 push.pushoption = a2667 push.pushoption = b26682669~/.gitconfig2670 push.pushoption = c26712672repo/.git/config2673 push.pushoption =2674 push.pushoption = b26752676This will result in only b (a and c are cleared).26772678--26792680push.recurseSubmodules::2681 Make sure all submodule commits used by the revisions to be pushed2682 are available on a remote-tracking branch. If the value is 'check'2683 then Git will verify that all submodule commits that changed in the2684 revisions to be pushed are available on at least one remote of the2685 submodule. If any commits are missing, the push will be aborted and2686 exit with non-zero status. If the value is 'on-demand' then all2687 submodules that changed in the revisions to be pushed will be2688 pushed. If on-demand was not able to push all necessary revisions2689 it will also be aborted and exit with non-zero status. If the value2690 is 'no' then default behavior of ignoring submodules when pushing2691 is retained. You may override this configuration at time of push by2692 specifying '--recurse-submodules=check|on-demand|no'.26932694include::rebase-config.txt[]26952696receive.advertiseAtomic::2697 By default, git-receive-pack will advertise the atomic push2698 capability to its clients. If you don't want to advertise this2699 capability, set this variable to false.27002701receive.advertisePushOptions::2702 When set to true, git-receive-pack will advertise the push options2703 capability to its clients. False by default.27042705receive.autogc::2706 By default, git-receive-pack will run "git-gc --auto" after2707 receiving data from git-push and updating refs. You can stop2708 it by setting this variable to false.27092710receive.certNonceSeed::2711 By setting this variable to a string, `git receive-pack`2712 will accept a `git push --signed` and verifies it by using2713 a "nonce" protected by HMAC using this string as a secret2714 key.27152716receive.certNonceSlop::2717 When a `git push --signed` sent a push certificate with a2718 "nonce" that was issued by a receive-pack serving the same2719 repository within this many seconds, export the "nonce"2720 found in the certificate to `GIT_PUSH_CERT_NONCE` to the2721 hooks (instead of what the receive-pack asked the sending2722 side to include). This may allow writing checks in2723 `pre-receive` and `post-receive` a bit easier. Instead of2724 checking `GIT_PUSH_CERT_NONCE_SLOP` environment variable2725 that records by how many seconds the nonce is stale to2726 decide if they want to accept the certificate, they only2727 can check `GIT_PUSH_CERT_NONCE_STATUS` is `OK`.27282729receive.fsckObjects::2730 If it is set to true, git-receive-pack will check all received2731 objects. It will abort in the case of a malformed object or a2732 broken link. The result of an abort are only dangling objects.2733 Defaults to false. If not set, the value of `transfer.fsckObjects`2734 is used instead.27352736receive.fsck.<msg-id>::2737 When `receive.fsckObjects` is set to true, errors can be switched2738 to warnings and vice versa by configuring the `receive.fsck.<msg-id>`2739 setting where the `<msg-id>` is the fsck message ID and the value2740 is one of `error`, `warn` or `ignore`. For convenience, fsck prefixes2741 the error/warning with the message ID, e.g. "missingEmail: invalid2742 author/committer line - missing email" means that setting2743 `receive.fsck.missingEmail = ignore` will hide that issue.2744+2745This feature is intended to support working with legacy repositories2746which would not pass pushing when `receive.fsckObjects = true`, allowing2747the host to accept repositories with certain known issues but still catch2748other issues.27492750receive.fsck.skipList::2751 The path to a sorted list of object names (i.e. one SHA-1 per2752 line) that are known to be broken in a non-fatal way and should2753 be ignored. This feature is useful when an established project2754 should be accepted despite early commits containing errors that2755 can be safely ignored such as invalid committer email addresses.2756 Note: corrupt objects cannot be skipped with this setting.27572758receive.keepAlive::2759 After receiving the pack from the client, `receive-pack` may2760 produce no output (if `--quiet` was specified) while processing2761 the pack, causing some networks to drop the TCP connection.2762 With this option set, if `receive-pack` does not transmit2763 any data in this phase for `receive.keepAlive` seconds, it will2764 send a short keepalive packet. The default is 5 seconds; set2765 to 0 to disable keepalives entirely.27662767receive.unpackLimit::2768 If the number of objects received in a push is below this2769 limit then the objects will be unpacked into loose object2770 files. However if the number of received objects equals or2771 exceeds this limit then the received pack will be stored as2772 a pack, after adding any missing delta bases. Storing the2773 pack from a push can make the push operation complete faster,2774 especially on slow filesystems. If not set, the value of2775 `transfer.unpackLimit` is used instead.27762777receive.maxInputSize::2778 If the size of the incoming pack stream is larger than this2779 limit, then git-receive-pack will error out, instead of2780 accepting the pack file. If not set or set to 0, then the size2781 is unlimited.27822783receive.denyDeletes::2784 If set to true, git-receive-pack will deny a ref update that deletes2785 the ref. Use this to prevent such a ref deletion via a push.27862787receive.denyDeleteCurrent::2788 If set to true, git-receive-pack will deny a ref update that2789 deletes the currently checked out branch of a non-bare repository.27902791receive.denyCurrentBranch::2792 If set to true or "refuse", git-receive-pack will deny a ref update2793 to the currently checked out branch of a non-bare repository.2794 Such a push is potentially dangerous because it brings the HEAD2795 out of sync with the index and working tree. If set to "warn",2796 print a warning of such a push to stderr, but allow the push to2797 proceed. If set to false or "ignore", allow such pushes with no2798 message. Defaults to "refuse".2799+2800Another option is "updateInstead" which will update the working2801tree if pushing into the current branch. This option is2802intended for synchronizing working directories when one side is not easily2803accessible via interactive ssh (e.g. a live web site, hence the requirement2804that the working directory be clean). This mode also comes in handy when2805developing inside a VM to test and fix code on different Operating Systems.2806+2807By default, "updateInstead" will refuse the push if the working tree or2808the index have any difference from the HEAD, but the `push-to-checkout`2809hook can be used to customize this. See linkgit:githooks[5].28102811receive.denyNonFastForwards::2812 If set to true, git-receive-pack will deny a ref update which is2813 not a fast-forward. Use this to prevent such an update via a push,2814 even if that push is forced. This configuration variable is2815 set when initializing a shared repository.28162817receive.hideRefs::2818 This variable is the same as `transfer.hideRefs`, but applies2819 only to `receive-pack` (and so affects pushes, but not fetches).2820 An attempt to update or delete a hidden ref by `git push` is2821 rejected.28222823receive.updateServerInfo::2824 If set to true, git-receive-pack will run git-update-server-info2825 after receiving data from git-push and updating refs.28262827receive.shallowUpdate::2828 If set to true, .git/shallow can be updated when new refs2829 require new shallow roots. Otherwise those refs are rejected.28302831remote.pushDefault::2832 The remote to push to by default. Overrides2833 `branch.<name>.remote` for all branches, and is overridden by2834 `branch.<name>.pushRemote` for specific branches.28352836remote.<name>.url::2837 The URL of a remote repository. See linkgit:git-fetch[1] or2838 linkgit:git-push[1].28392840remote.<name>.pushurl::2841 The push URL of a remote repository. See linkgit:git-push[1].28422843remote.<name>.proxy::2844 For remotes that require curl (http, https and ftp), the URL to2845 the proxy to use for that remote. Set to the empty string to2846 disable proxying for that remote.28472848remote.<name>.proxyAuthMethod::2849 For remotes that require curl (http, https and ftp), the method to use for2850 authenticating against the proxy in use (probably set in2851 `remote.<name>.proxy`). See `http.proxyAuthMethod`.28522853remote.<name>.fetch::2854 The default set of "refspec" for linkgit:git-fetch[1]. See2855 linkgit:git-fetch[1].28562857remote.<name>.push::2858 The default set of "refspec" for linkgit:git-push[1]. See2859 linkgit:git-push[1].28602861remote.<name>.mirror::2862 If true, pushing to this remote will automatically behave2863 as if the `--mirror` option was given on the command line.28642865remote.<name>.skipDefaultUpdate::2866 If true, this remote will be skipped by default when updating2867 using linkgit:git-fetch[1] or the `update` subcommand of2868 linkgit:git-remote[1].28692870remote.<name>.skipFetchAll::2871 If true, this remote will be skipped by default when updating2872 using linkgit:git-fetch[1] or the `update` subcommand of2873 linkgit:git-remote[1].28742875remote.<name>.receivepack::2876 The default program to execute on the remote side when pushing. See2877 option --receive-pack of linkgit:git-push[1].28782879remote.<name>.uploadpack::2880 The default program to execute on the remote side when fetching. See2881 option --upload-pack of linkgit:git-fetch-pack[1].28822883remote.<name>.tagOpt::2884 Setting this value to --no-tags disables automatic tag following when2885 fetching from remote <name>. Setting it to --tags will fetch every2886 tag from remote <name>, even if they are not reachable from remote2887 branch heads. Passing these flags directly to linkgit:git-fetch[1] can2888 override this setting. See options --tags and --no-tags of2889 linkgit:git-fetch[1].28902891remote.<name>.vcs::2892 Setting this to a value <vcs> will cause Git to interact with2893 the remote with the git-remote-<vcs> helper.28942895remote.<name>.prune::2896 When set to true, fetching from this remote by default will also2897 remove any remote-tracking references that no longer exist on the2898 remote (as if the `--prune` option was given on the command line).2899 Overrides `fetch.prune` settings, if any.29002901remotes.<group>::2902 The list of remotes which are fetched by "git remote update2903 <group>". See linkgit:git-remote[1].29042905repack.useDeltaBaseOffset::2906 By default, linkgit:git-repack[1] creates packs that use2907 delta-base offset. If you need to share your repository with2908 Git older than version 1.4.4, either directly or via a dumb2909 protocol such as http, then you need to set this option to2910 "false" and repack. Access from old Git versions over the2911 native protocol are unaffected by this option.29122913repack.packKeptObjects::2914 If set to true, makes `git repack` act as if2915 `--pack-kept-objects` was passed. See linkgit:git-repack[1] for2916 details. Defaults to `false` normally, but `true` if a bitmap2917 index is being written (either via `--write-bitmap-index` or2918 `repack.writeBitmaps`).29192920repack.writeBitmaps::2921 When true, git will write a bitmap index when packing all2922 objects to disk (e.g., when `git repack -a` is run). This2923 index can speed up the "counting objects" phase of subsequent2924 packs created for clones and fetches, at the cost of some disk2925 space and extra time spent on the initial repack. This has2926 no effect if multiple packfiles are created.2927 Defaults to false.29282929rerere.autoUpdate::2930 When set to true, `git-rerere` updates the index with the2931 resulting contents after it cleanly resolves conflicts using2932 previously recorded resolution. Defaults to false.29332934rerere.enabled::2935 Activate recording of resolved conflicts, so that identical2936 conflict hunks can be resolved automatically, should they be2937 encountered again. By default, linkgit:git-rerere[1] is2938 enabled if there is an `rr-cache` directory under the2939 `$GIT_DIR`, e.g. if "rerere" was previously used in the2940 repository.29412942sendemail.identity::2943 A configuration identity. When given, causes values in the2944 'sendemail.<identity>' subsection to take precedence over2945 values in the 'sendemail' section. The default identity is2946 the value of `sendemail.identity`.29472948sendemail.smtpEncryption::2949 See linkgit:git-send-email[1] for description. Note that this2950 setting is not subject to the 'identity' mechanism.29512952sendemail.smtpssl (deprecated)::2953 Deprecated alias for 'sendemail.smtpEncryption = ssl'.29542955sendemail.smtpsslcertpath::2956 Path to ca-certificates (either a directory or a single file).2957 Set it to an empty string to disable certificate verification.29582959sendemail.<identity>.*::2960 Identity-specific versions of the 'sendemail.*' parameters2961 found below, taking precedence over those when this2962 identity is selected, through either the command-line or2963 `sendemail.identity`.29642965sendemail.aliasesFile::2966sendemail.aliasFileType::2967sendemail.annotate::2968sendemail.bcc::2969sendemail.cc::2970sendemail.ccCmd::2971sendemail.chainReplyTo::2972sendemail.confirm::2973sendemail.envelopeSender::2974sendemail.from::2975sendemail.multiEdit::2976sendemail.signedoffbycc::2977sendemail.smtpPass::2978sendemail.suppresscc::2979sendemail.suppressFrom::2980sendemail.to::2981sendemail.tocmd::2982sendemail.smtpDomain::2983sendemail.smtpServer::2984sendemail.smtpServerPort::2985sendemail.smtpServerOption::2986sendemail.smtpUser::2987sendemail.thread::2988sendemail.transferEncoding::2989sendemail.validate::2990sendemail.xmailer::2991 See linkgit:git-send-email[1] for description.29922993sendemail.signedoffcc (deprecated)::2994 Deprecated alias for `sendemail.signedoffbycc`.29952996sendemail.smtpBatchSize::2997 Number of messages to be sent per connection, after that a relogin2998 will happen. If the value is 0 or undefined, send all messages in2999 one connection.3000 See also the `--batch-size` option of linkgit:git-send-email[1].30013002sendemail.smtpReloginDelay::3003 Seconds wait before reconnecting to smtp server.3004 See also the `--relogin-delay` option of linkgit:git-send-email[1].30053006showbranch.default::3007 The default set of branches for linkgit:git-show-branch[1].3008 See linkgit:git-show-branch[1].30093010splitIndex.maxPercentChange::3011 When the split index feature is used, this specifies the3012 percent of entries the split index can contain compared to the3013 total number of entries in both the split index and the shared3014 index before a new shared index is written.3015 The value should be between 0 and 100. If the value is 0 then3016 a new shared index is always written, if it is 100 a new3017 shared index is never written.3018 By default the value is 20, so a new shared index is written3019 if the number of entries in the split index would be greater3020 than 20 percent of the total number of entries.3021 See linkgit:git-update-index[1].30223023splitIndex.sharedIndexExpire::3024 When the split index feature is used, shared index files that3025 were not modified since the time this variable specifies will3026 be removed when a new shared index file is created. The value3027 "now" expires all entries immediately, and "never" suppresses3028 expiration altogether.3029 The default value is "2.weeks.ago".3030 Note that a shared index file is considered modified (for the3031 purpose of expiration) each time a new split-index file is3032 either created based on it or read from it.3033 See linkgit:git-update-index[1].30343035status.relativePaths::3036 By default, linkgit:git-status[1] shows paths relative to the3037 current directory. Setting this variable to `false` shows paths3038 relative to the repository root (this was the default for Git3039 prior to v1.5.4).30403041status.short::3042 Set to true to enable --short by default in linkgit:git-status[1].3043 The option --no-short takes precedence over this variable.30443045status.branch::3046 Set to true to enable --branch by default in linkgit:git-status[1].3047 The option --no-branch takes precedence over this variable.30483049status.displayCommentPrefix::3050 If set to true, linkgit:git-status[1] will insert a comment3051 prefix before each output line (starting with3052 `core.commentChar`, i.e. `#` by default). This was the3053 behavior of linkgit:git-status[1] in Git 1.8.4 and previous.3054 Defaults to false.30553056status.showStash::3057 If set to true, linkgit:git-status[1] will display the number of3058 entries currently stashed away.3059 Defaults to false.30603061status.showUntrackedFiles::3062 By default, linkgit:git-status[1] and linkgit:git-commit[1] show3063 files which are not currently tracked by Git. Directories which3064 contain only untracked files, are shown with the directory name3065 only. Showing untracked files means that Git needs to lstat() all3066 the files in the whole repository, which might be slow on some3067 systems. So, this variable controls how the commands displays3068 the untracked files. Possible values are:3069+3070--3071* `no` - Show no untracked files.3072* `normal` - Show untracked files and directories.3073* `all` - Show also individual files in untracked directories.3074--3075+3076If this variable is not specified, it defaults to 'normal'.3077This variable can be overridden with the -u|--untracked-files option3078of linkgit:git-status[1] and linkgit:git-commit[1].30793080status.submoduleSummary::3081 Defaults to false.3082 If this is set to a non zero number or true (identical to -1 or an3083 unlimited number), the submodule summary will be enabled and a3084 summary of commits for modified submodules will be shown (see3085 --summary-limit option of linkgit:git-submodule[1]). Please note3086 that the summary output command will be suppressed for all3087 submodules when `diff.ignoreSubmodules` is set to 'all' or only3088 for those submodules where `submodule.<name>.ignore=all`. The only3089 exception to that rule is that status and commit will show staged3090 submodule changes. To3091 also view the summary for ignored submodules you can either use3092 the --ignore-submodules=dirty command-line option or the 'git3093 submodule summary' command, which shows a similar output but does3094 not honor these settings.30953096stash.showPatch::3097 If this is set to true, the `git stash show` command without an3098 option will show the stash entry in patch form. Defaults to false.3099 See description of 'show' command in linkgit:git-stash[1].31003101stash.showStat::3102 If this is set to true, the `git stash show` command without an3103 option will show diffstat of the stash entry. Defaults to true.3104 See description of 'show' command in linkgit:git-stash[1].31053106submodule.<name>.url::3107 The URL for a submodule. This variable is copied from the .gitmodules3108 file to the git config via 'git submodule init'. The user can change3109 the configured URL before obtaining the submodule via 'git submodule3110 update'. If neither submodule.<name>.active or submodule.active are3111 set, the presence of this variable is used as a fallback to indicate3112 whether the submodule is of interest to git commands.3113 See linkgit:git-submodule[1] and linkgit:gitmodules[5] for details.31143115submodule.<name>.update::3116 The method by which a submodule is updated by 'git submodule update',3117 which is the only affected command, others such as3118 'git checkout --recurse-submodules' are unaffected. It exists for3119 historical reasons, when 'git submodule' was the only command to3120 interact with submodules; settings like `submodule.active`3121 and `pull.rebase` are more specific. It is populated by3122 `git submodule init` from the linkgit:gitmodules[5] file.3123 See description of 'update' command in linkgit:git-submodule[1].31243125submodule.<name>.branch::3126 The remote branch name for a submodule, used by `git submodule3127 update --remote`. Set this option to override the value found in3128 the `.gitmodules` file. See linkgit:git-submodule[1] and3129 linkgit:gitmodules[5] for details.31303131submodule.<name>.fetchRecurseSubmodules::3132 This option can be used to control recursive fetching of this3133 submodule. It can be overridden by using the --[no-]recurse-submodules3134 command-line option to "git fetch" and "git pull".3135 This setting will override that from in the linkgit:gitmodules[5]3136 file.31373138submodule.<name>.ignore::3139 Defines under what circumstances "git status" and the diff family show3140 a submodule as modified. When set to "all", it will never be considered3141 modified (but it will nonetheless show up in the output of status and3142 commit when it has been staged), "dirty" will ignore all changes3143 to the submodules work tree and3144 takes only differences between the HEAD of the submodule and the commit3145 recorded in the superproject into account. "untracked" will additionally3146 let submodules with modified tracked files in their work tree show up.3147 Using "none" (the default when this option is not set) also shows3148 submodules that have untracked files in their work tree as changed.3149 This setting overrides any setting made in .gitmodules for this submodule,3150 both settings can be overridden on the command line by using the3151 "--ignore-submodules" option. The 'git submodule' commands are not3152 affected by this setting.31533154submodule.<name>.active::3155 Boolean value indicating if the submodule is of interest to git3156 commands. This config option takes precedence over the3157 submodule.active config option.31583159submodule.active::3160 A repeated field which contains a pathspec used to match against a3161 submodule's path to determine if the submodule is of interest to git3162 commands.31633164submodule.recurse::3165 Specifies if commands recurse into submodules by default. This3166 applies to all commands that have a `--recurse-submodules` option.3167 Defaults to false.31683169submodule.fetchJobs::3170 Specifies how many submodules are fetched/cloned at the same time.3171 A positive integer allows up to that number of submodules fetched3172 in parallel. A value of 0 will give some reasonable default.3173 If unset, it defaults to 1.31743175submodule.alternateLocation::3176 Specifies how the submodules obtain alternates when submodules are3177 cloned. Possible values are `no`, `superproject`.3178 By default `no` is assumed, which doesn't add references. When the3179 value is set to `superproject` the submodule to be cloned computes3180 its alternates location relative to the superprojects alternate.31813182submodule.alternateErrorStrategy::3183 Specifies how to treat errors with the alternates for a submodule3184 as computed via `submodule.alternateLocation`. Possible values are3185 `ignore`, `info`, `die`. Default is `die`.31863187tag.forceSignAnnotated::3188 A boolean to specify whether annotated tags created should be GPG signed.3189 If `--annotate` is specified on the command line, it takes3190 precedence over this option.31913192tag.sort::3193 This variable controls the sort ordering of tags when displayed by3194 linkgit:git-tag[1]. Without the "--sort=<value>" option provided, the3195 value of this variable will be used as the default.31963197tar.umask::3198 This variable can be used to restrict the permission bits of3199 tar archive entries. The default is 0002, which turns off the3200 world write bit. The special value "user" indicates that the3201 archiving user's umask will be used instead. See umask(2) and3202 linkgit:git-archive[1].32033204transfer.fsckObjects::3205 When `fetch.fsckObjects` or `receive.fsckObjects` are3206 not set, the value of this variable is used instead.3207 Defaults to false.32083209transfer.hideRefs::3210 String(s) `receive-pack` and `upload-pack` use to decide which3211 refs to omit from their initial advertisements. Use more than3212 one definition to specify multiple prefix strings. A ref that is3213 under the hierarchies listed in the value of this variable is3214 excluded, and is hidden when responding to `git push` or `git3215 fetch`. See `receive.hideRefs` and `uploadpack.hideRefs` for3216 program-specific versions of this config.3217+3218You may also include a `!` in front of the ref name to negate the entry,3219explicitly exposing it, even if an earlier entry marked it as hidden.3220If you have multiple hideRefs values, later entries override earlier ones3221(and entries in more-specific config files override less-specific ones).3222+3223If a namespace is in use, the namespace prefix is stripped from each3224reference before it is matched against `transfer.hiderefs` patterns.3225For example, if `refs/heads/master` is specified in `transfer.hideRefs` and3226the current namespace is `foo`, then `refs/namespaces/foo/refs/heads/master`3227is omitted from the advertisements but `refs/heads/master` and3228`refs/namespaces/bar/refs/heads/master` are still advertised as so-called3229"have" lines. In order to match refs before stripping, add a `^` in front of3230the ref name. If you combine `!` and `^`, `!` must be specified first.3231+3232Even if you hide refs, a client may still be able to steal the target3233objects via the techniques described in the "SECURITY" section of the3234linkgit:gitnamespaces[7] man page; it's best to keep private data in a3235separate repository.32363237transfer.unpackLimit::3238 When `fetch.unpackLimit` or `receive.unpackLimit` are3239 not set, the value of this variable is used instead.3240 The default value is 100.32413242uploadarchive.allowUnreachable::3243 If true, allow clients to use `git archive --remote` to request3244 any tree, whether reachable from the ref tips or not. See the3245 discussion in the "SECURITY" section of3246 linkgit:git-upload-archive[1] for more details. Defaults to3247 `false`.32483249uploadpack.hideRefs::3250 This variable is the same as `transfer.hideRefs`, but applies3251 only to `upload-pack` (and so affects only fetches, not pushes).3252 An attempt to fetch a hidden ref by `git fetch` will fail. See3253 also `uploadpack.allowTipSHA1InWant`.32543255uploadpack.allowTipSHA1InWant::3256 When `uploadpack.hideRefs` is in effect, allow `upload-pack`3257 to accept a fetch request that asks for an object at the tip3258 of a hidden ref (by default, such a request is rejected).3259 See also `uploadpack.hideRefs`. Even if this is false, a client3260 may be able to steal objects via the techniques described in the3261 "SECURITY" section of the linkgit:gitnamespaces[7] man page; it's3262 best to keep private data in a separate repository.32633264uploadpack.allowReachableSHA1InWant::3265 Allow `upload-pack` to accept a fetch request that asks for an3266 object that is reachable from any ref tip. However, note that3267 calculating object reachability is computationally expensive.3268 Defaults to `false`. Even if this is false, a client may be able3269 to steal objects via the techniques described in the "SECURITY"3270 section of the linkgit:gitnamespaces[7] man page; it's best to3271 keep private data in a separate repository.32723273uploadpack.allowAnySHA1InWant::3274 Allow `upload-pack` to accept a fetch request that asks for any3275 object at all.3276 Defaults to `false`.32773278uploadpack.keepAlive::3279 When `upload-pack` has started `pack-objects`, there may be a3280 quiet period while `pack-objects` prepares the pack. Normally3281 it would output progress information, but if `--quiet` was used3282 for the fetch, `pack-objects` will output nothing at all until3283 the pack data begins. Some clients and networks may consider3284 the server to be hung and give up. Setting this option instructs3285 `upload-pack` to send an empty keepalive packet every3286 `uploadpack.keepAlive` seconds. Setting this option to 03287 disables keepalive packets entirely. The default is 5 seconds.32883289uploadpack.packObjectsHook::3290 If this option is set, when `upload-pack` would run3291 `git pack-objects` to create a packfile for a client, it will3292 run this shell command instead. The `pack-objects` command and3293 arguments it _would_ have run (including the `git pack-objects`3294 at the beginning) are appended to the shell command. The stdin3295 and stdout of the hook are treated as if `pack-objects` itself3296 was run. I.e., `upload-pack` will feed input intended for3297 `pack-objects` to the hook, and expects a completed packfile on3298 stdout.3299+3300Note that this configuration variable is ignored if it is seen in the3301repository-level config (this is a safety measure against fetching from3302untrusted repositories).33033304url.<base>.insteadOf::3305 Any URL that starts with this value will be rewritten to3306 start, instead, with <base>. In cases where some site serves a3307 large number of repositories, and serves them with multiple3308 access methods, and some users need to use different access3309 methods, this feature allows people to specify any of the3310 equivalent URLs and have Git automatically rewrite the URL to3311 the best alternative for the particular user, even for a3312 never-before-seen repository on the site. When more than one3313 insteadOf strings match a given URL, the longest match is used.3314+3315Note that any protocol restrictions will be applied to the rewritten3316URL. If the rewrite changes the URL to use a custom protocol or remote3317helper, you may need to adjust the `protocol.*.allow` config to permit3318the request. In particular, protocols you expect to use for submodules3319must be set to `always` rather than the default of `user`. See the3320description of `protocol.allow` above.33213322url.<base>.pushInsteadOf::3323 Any URL that starts with this value will not be pushed to;3324 instead, it will be rewritten to start with <base>, and the3325 resulting URL will be pushed to. In cases where some site serves3326 a large number of repositories, and serves them with multiple3327 access methods, some of which do not allow push, this feature3328 allows people to specify a pull-only URL and have Git3329 automatically use an appropriate URL to push, even for a3330 never-before-seen repository on the site. When more than one3331 pushInsteadOf strings match a given URL, the longest match is3332 used. If a remote has an explicit pushurl, Git will ignore this3333 setting for that remote.33343335user.email::3336 Your email address to be recorded in any newly created commits.3337 Can be overridden by the `GIT_AUTHOR_EMAIL`, `GIT_COMMITTER_EMAIL`, and3338 `EMAIL` environment variables. See linkgit:git-commit-tree[1].33393340user.name::3341 Your full name to be recorded in any newly created commits.3342 Can be overridden by the `GIT_AUTHOR_NAME` and `GIT_COMMITTER_NAME`3343 environment variables. See linkgit:git-commit-tree[1].33443345user.useConfigOnly::3346 Instruct Git to avoid trying to guess defaults for `user.email`3347 and `user.name`, and instead retrieve the values only from the3348 configuration. For example, if you have multiple email addresses3349 and would like to use a different one for each repository, then3350 with this configuration option set to `true` in the global config3351 along with a name, Git will prompt you to set up an email before3352 making new commits in a newly cloned repository.3353 Defaults to `false`.33543355user.signingKey::3356 If linkgit:git-tag[1] or linkgit:git-commit[1] is not selecting the3357 key you want it to automatically when creating a signed tag or3358 commit, you can override the default selection with this variable.3359 This option is passed unchanged to gpg's --local-user parameter,3360 so you may specify a key using any method that gpg supports.33613362versionsort.prereleaseSuffix (deprecated)::3363 Deprecated alias for `versionsort.suffix`. Ignored if3364 `versionsort.suffix` is set.33653366versionsort.suffix::3367 Even when version sort is used in linkgit:git-tag[1], tagnames3368 with the same base version but different suffixes are still sorted3369 lexicographically, resulting e.g. in prerelease tags appearing3370 after the main release (e.g. "1.0-rc1" after "1.0"). This3371 variable can be specified to determine the sorting order of tags3372 with different suffixes.3373+3374By specifying a single suffix in this variable, any tagname containing3375that suffix will appear before the corresponding main release. E.g. if3376the variable is set to "-rc", then all "1.0-rcX" tags will appear before3377"1.0". If specified multiple times, once per suffix, then the order of3378suffixes in the configuration will determine the sorting order of tagnames3379with those suffixes. E.g. if "-pre" appears before "-rc" in the3380configuration, then all "1.0-preX" tags will be listed before any3381"1.0-rcX" tags. The placement of the main release tag relative to tags3382with various suffixes can be determined by specifying the empty suffix3383among those other suffixes. E.g. if the suffixes "-rc", "", "-ck" and3384"-bfs" appear in the configuration in this order, then all "v4.8-rcX" tags3385are listed first, followed by "v4.8", then "v4.8-ckX" and finally3386"v4.8-bfsX".3387+3388If more than one suffixes match the same tagname, then that tagname will3389be sorted according to the suffix which starts at the earliest position in3390the tagname. If more than one different matching suffixes start at3391that earliest position, then that tagname will be sorted according to the3392longest of those suffixes.3393The sorting order between different suffixes is undefined if they are3394in multiple config files.33953396web.browser::3397 Specify a web browser that may be used by some commands.3398 Currently only linkgit:git-instaweb[1] and linkgit:git-help[1]3399 may use it.