]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-config.txt
Merge branch 'en/fetch-negotiation-default-fix'
[thirdparty/git.git] / Documentation / git-config.txt
CommitLineData
e0d10e1c
TP
1git-config(1)
2=============
3
4NAME
5----
6git-config - Get and set repository or global options
7
8
9SYNOPSIS
10--------
11[verse]
49cbad0e
JNA
12'git config' [<file-option>] [--type=<type>] [--fixed-value] [--show-origin] [--show-scope] [-z|--null] <name> [<value> [<value-pattern>]]
13'git config' [<file-option>] [--type=<type>] --add <name> <value>
14'git config' [<file-option>] [--type=<type>] [--fixed-value] --replace-all <name> <value> [<value-pattern>]
15'git config' [<file-option>] [--type=<type>] [--show-origin] [--show-scope] [-z|--null] [--fixed-value] --get <name> [<value-pattern>]
16'git config' [<file-option>] [--type=<type>] [--show-origin] [--show-scope] [-z|--null] [--fixed-value] --get-all <name> [<value-pattern>]
17'git config' [<file-option>] [--type=<type>] [--show-origin] [--show-scope] [-z|--null] [--fixed-value] [--name-only] --get-regexp <name-regex> [<value-pattern>]
18'git config' [<file-option>] [--type=<type>] [-z|--null] --get-urlmatch <name> <URL>
19'git config' [<file-option>] [--fixed-value] --unset <name> [<value-pattern>]
20'git config' [<file-option>] [--fixed-value] --unset-all <name> [<value-pattern>]
21'git config' [<file-option>] --rename-section <old-name> <new-name>
22'git config' [<file-option>] --remove-section <name>
145d59f4 23'git config' [<file-option>] [--show-origin] [--show-scope] [-z|--null] [--name-only] -l | --list
49cbad0e
JNA
24'git config' [<file-option>] --get-color <name> [<default>]
25'git config' [<file-option>] --get-colorbool <name> [<stdout-is-tty>]
3bec8ff9 26'git config' [<file-option>] -e | --edit
e0d10e1c
TP
27
28DESCRIPTION
29-----------
30You can query/set/replace/unset options with this command. The name is
31actually the section and the key separated by a dot, and the value will be
32escaped.
33
bcf9626a 34Multiple lines can be added to an option by using the `--add` option.
e0d10e1c 35If you want to update or unset an option which can occur on multiple
c9026187
JH
36lines, a `value-pattern` (which is an extended regular expression,
37unless the `--fixed-value` option is given) needs to be given. Only the
38existing values that match the pattern are updated or unset. If
39you want to handle the lines that do *not* match the pattern, just
40prepend a single exclamation mark in front (see also <<EXAMPLES>>),
41but note that this only works when the `--fixed-value` option is not
42in use.
e0d10e1c 43
fb0dc3ba
TB
44The `--type=<type>` option instructs 'git config' to ensure that incoming and
45outgoing values are canonicalize-able under the given <type>. If no
46`--type=<type>` is given, no canonicalization will be performed. Callers may
47unset an existing `--type` specifier with `--no-type`.
e0d10e1c 48
c598c5aa
FA
49When reading, the values are read from the system, global and
50repository local configuration files by default, and options
58b284a2
NTND
51`--system`, `--global`, `--local`, `--worktree` and
52`--file <filename>` can be used to tell the command to read from only
53that location (see <<FILES>>).
c598c5aa
FA
54
55When writing, the new value is written to the repository local
bcf9626a 56configuration file by default, and options `--system`, `--global`,
58b284a2
NTND
57`--worktree`, `--file <filename>` can be used to tell the command to
58write to that location (you can say `--local` but that is the
59default).
be52a41c 60
9409c7a5
JH
61This command will fail with non-zero status upon error. Some exit
62codes are:
e0d10e1c 63
376eb604 64- The section or key is invalid (ret=1),
94c5b0e8 65- no section or name was provided (ret=2),
376eb604
SB
66- the config file is invalid (ret=3),
67- the config file cannot be written (ret=4),
94c5b0e8
JK
68- you try to unset an option which does not exist (ret=5),
69- you try to unset/set an option for which multiple lines match (ret=5), or
70- you try to use an invalid regexp (ret=6).
e0d10e1c 71
7a397419 72On success, the command returns the exit code 0.
e0d10e1c 73
ae578de9
PO
74A list of all available configuration variables can be obtained using the
75`git help --config` command.
76
73428385 77[[OPTIONS]]
e0d10e1c
TP
78OPTIONS
79-------
80
81--replace-all::
82 Default behavior is to replace at most one line. This replaces
247e2f82 83 all lines matching the key (and optionally the `value-pattern`).
e0d10e1c
TP
84
85--add::
86 Adds a new line to the option without altering any existing
247e2f82 87 values. This is the same as providing '^$' as the `value-pattern`
ac9f71cf 88 in `--replace-all`.
e0d10e1c
TP
89
90--get::
91 Get the value for a given key (optionally filtered by a regex
92 matching the value). Returns error code 1 if the key was not
62e91efa 93 found and the last value if multiple key values were found.
e0d10e1c
TP
94
95--get-all::
24990b2f 96 Like get, but returns all values for a multi-valued key.
e0d10e1c
TP
97
98--get-regexp::
e0a4aae8
LP
99 Like --get-all, but interprets the name as a regular expression and
100 writes out the key names. Regular expression matching is currently
101 case-sensitive and done against a canonicalized version of the key
102 in which section and variable names are lowercased, but subsection
103 names are not.
e0d10e1c 104
49cbad0e 105--get-urlmatch <name> <URL>::
d4770964 106 When given a two-part name section.key, the value for
49cbad0e 107 section.<URL>.key whose <URL> part matches the best to the
d4770964
JH
108 given URL is returned (if no such key exists, the value for
109 section.key is used as a fallback). When given just the
110 section as name, do so for all the keys in the section and
27b30be6 111 list them. Returns error code 1 if no value is found.
d4770964 112
e0d10e1c 113--global::
5ff0c0e8
RR
114 For writing options: write to global `~/.gitconfig` file
115 rather than the repository `.git/config`, write to
116 `$XDG_CONFIG_HOME/git/config` file if this file exists and the
117 `~/.gitconfig` file doesn't.
17014090 118+
5ff0c0e8
RR
119For reading options: read only from global `~/.gitconfig` and from
120`$XDG_CONFIG_HOME/git/config` rather than from all available files.
17014090
FL
121+
122See also <<FILES>>.
e0d10e1c 123
9bc20aa7 124--system::
5ff0c0e8
RR
125 For writing options: write to system-wide
126 `$(prefix)/etc/gitconfig` rather than the repository
127 `.git/config`.
17014090 128+
5ff0c0e8 129For reading options: read only from system-wide `$(prefix)/etc/gitconfig`
17014090
FL
130rather than from all available files.
131+
132See also <<FILES>>.
9bc20aa7 133
560d4b86 134--local::
5ff0c0e8 135 For writing options: write to the repository `.git/config` file.
8d75a1d1 136 This is the default behavior.
560d4b86 137+
5ff0c0e8 138For reading options: read only from the repository `.git/config` rather than
560d4b86
NK
139from all available files.
140+
141See also <<FILES>>.
142
58b284a2
NTND
143--worktree::
144 Similar to `--local` except that `.git/config.worktree` is
145 read from or written to if `extensions.worktreeConfig` is
146 present. If not it's the same as `--local`.
147
49cbad0e
JNA
148-f <config-file>::
149--file <config-file>::
4bb9eb5f
JK
150 For writing options: write to the specified file rather than the
151 repository `.git/config`.
152+
153For reading options: read only from the specified file rather than from all
154available files.
155+
156See also <<FILES>>.
67d454fe 157
49cbad0e 158--blob <blob>::
bcf9626a 159 Similar to `--file` but use the given blob instead of a file. E.g.
1bc88819
HV
160 you can use 'master:.gitmodules' to read values from the file
161 '.gitmodules' in the master branch. See "SPECIFYING REVISIONS"
162 section in linkgit:gitrevisions[7] for a more complete list of
163 ways to spell blob names.
164
118f8b24
PB
165--remove-section::
166 Remove the given section from the configuration file.
167
168--rename-section::
169 Rename the given section to a new name.
170
e0d10e1c
TP
171--unset::
172 Remove the line matching the key from config file.
173
174--unset-all::
9debca9a 175 Remove all lines matching the key from config file.
e0d10e1c 176
3240240f
SB
177-l::
178--list::
578625fa 179 List all variables set in config file, along with their values.
e0d10e1c 180
fda43942
DS
181--fixed-value::
182 When used with the `value-pattern` argument, treat `value-pattern` as
183 an exact string instead of a regular expression. This will restrict
184 the name/value pairs that are matched to only those where the value
185 is exactly equal to the `value-pattern`.
186
fb0dc3ba
TB
187--type <type>::
188 'git config' will ensure that any input or output is valid under the given
189 type constraint(s), and will canonicalize outgoing values in `<type>`'s
190 canonical form.
191+
192Valid `<type>`'s include:
193+
194- 'bool': canonicalize values as either "true" or "false".
195- 'int': canonicalize values as simple decimal numbers. An optional suffix of
196 'k', 'm', or 'g' will cause the value to be multiplied by 1024, 1048576, or
197 1073741824 upon input.
198- 'bool-or-int': canonicalize according to either 'bool' or 'int', as described
199 above.
200- 'path': canonicalize by adding a leading `~` to the value of `$HOME` and
201 `~user` to the home directory for the specified user. This specifier has no
202 effect when setting the value (but you can use `git config section.variable
203 ~/` from the command line to let your shell do the expansion.)
204- 'expiry-date': canonicalize by converting from a fixed or relative date-string
205 to a timestamp. This specifier has no effect when setting the value.
63e2a0f8
TB
206- 'color': When getting a value, canonicalize by converting to an ANSI color
207 escape sequence. When setting a value, a sanity-check is performed to ensure
208 that the given value is canonicalize-able as an ANSI color, but it is written
209 as-is.
fb0dc3ba 210+
e0d10e1c 211
fb0dc3ba 212--bool::
e0d10e1c 213--int::
d57f07eb 214--bool-or-int::
1349484e 215--path::
5f967424 216--expiry-date::
08caa95a
217 Historical options for selecting a type specifier. Prefer instead `--type`
218 (see above).
fb0dc3ba
TB
219
220--no-type::
221 Un-sets the previously set type specifier (if one was previously set). This
222 option requests that 'git config' not canonicalize the retrieved variable.
223 `--no-type` has no effect without `--type=<type>` or `--<type>`.
5f967424 224
3240240f
SB
225-z::
226--null::
2275d502 227 For all options that output values and/or keys, always
a5d86f74 228 end values with the null character (instead of a
2275d502
FL
229 newline). Use newline instead as a delimiter between
230 key and value. This allows for secure parsing of the
231 output without getting confused e.g. by values that
232 contain line breaks.
233
578625fa
SG
234--name-only::
235 Output only the names of config variables for `--list` or
236 `--get-regexp`.
237
70bd879a
LS
238--show-origin::
239 Augment the output of all queried config options with the
240 origin type (file, standard input, blob, command line) and
241 the actual origin (config file path, ref, or blob id if
242 applicable).
243
145d59f4
MR
244--show-scope::
245 Similar to `--show-origin` in that it augments the output of
246 all queried config options with the scope of that value
247 (local, global, system, command).
248
49cbad0e 249--get-colorbool <name> [<stdout-is-tty>]::
0f6f5a40 250
49cbad0e
JNA
251 Find the color setting for `<name>` (e.g. `color.diff`) and output
252 "true" or "false". `<stdout-is-tty>` should be either "true" or
0f6f5a40 253 "false", and is taken into account when configuration says
49cbad0e 254 "auto". If `<stdout-is-tty>` is missing, then checks the standard
0f6f5a40
JH
255 output of the command itself, and exits with status 0 if color
256 is to be used, or exits with status 1 otherwise.
4d4f5ba3
MK
257 When the color setting for `name` is undefined, the command uses
258 `color.ui` as fallback.
0f6f5a40 259
49cbad0e 260--get-color <name> [<default>]::
9ce03522
JH
261
262 Find the color configured for `name` (e.g. `color.diff.new`) and
263 output it as the ANSI color escape sequence to the standard
264 output. The optional `default` parameter is used instead, if
265 there is no color configured for `name`.
63e2a0f8 266+
cd8e7593
JK
267`--type=color [--default=<default>]` is preferred over `--get-color`
268(but note that `--get-color` will omit the trailing newline printed by
269`--type=color`).
e0d10e1c 270
3bec8ff9
FC
271-e::
272--edit::
273 Opens an editor to modify the specified config file; either
bcf9626a 274 `--system`, `--global`, or repository (default).
3bec8ff9 275
0460ed2c 276--[no-]includes::
9b25a0b5 277 Respect `include.*` directives in config files when looking up
753a2cda
JK
278 values. Defaults to `off` when a specific file is given (e.g.,
279 using `--file`, `--global`, etc) and `on` when searching all
280 config files.
9b25a0b5 281
eeaa24b9
TB
282--default <value>::
283 When using `--get`, and the requested variable is not found, behave as if
284 <value> were the value assigned to the that variable.
285
32888b8f
286CONFIGURATION
287-------------
288`pager.config` is only respected when listing configuration, i.e., when
289using `--list` or any of the `--get-*` which may return multiple results.
c0e9f5be 290The default is to use a pager.
32888b8f 291
17014090
FL
292[[FILES]]
293FILES
294-----
295
bcf9626a 296If not set explicitly with `--file`, there are four files where
0b444cdb 297'git config' will search for configuration options:
17014090 298
7da9800f
JK
299$(prefix)/etc/gitconfig::
300 System-wide configuration file.
17014090 301
21cf3227
HKNN
302$XDG_CONFIG_HOME/git/config::
303 Second user-specific configuration file. If $XDG_CONFIG_HOME is not set
5ff0c0e8 304 or empty, `$HOME/.config/git/config` will be used. Any single-valued
21cf3227 305 variable set in this file will be overwritten by whatever is in
5ff0c0e8 306 `~/.gitconfig`. It is a good idea not to create this file if
21cf3227
HKNN
307 you sometimes use older versions of Git, as support for this
308 file was added fairly recently.
309
7da9800f
JK
310~/.gitconfig::
311 User-specific configuration file. Also called "global"
312 configuration file.
313
314$GIT_DIR/config::
315 Repository specific configuration file.
17014090 316
58b284a2
NTND
317$GIT_DIR/config.worktree::
318 This is optional and is only searched when
319 `extensions.worktreeConfig` is present in $GIT_DIR/config.
320
17014090
FL
321If no further options are given, all reading options will read all of these
322files that are available. If the global or the system-wide configuration
323file are not available they will be ignored. If the repository configuration
0b444cdb 324file is not available or readable, 'git config' will exit with a non-zero
17014090
FL
325error code. However, in neither case will an error message be issued.
326
7da9800f
JK
327The files are read in the order given above, with last value found taking
328precedence over values read earlier. When multiple values are taken then all
329values of a key from all files will be used.
330
ae1f7094
DG
331You may override individual configuration parameters when running any git
332command by using the `-c` option. See linkgit:git[1] for details.
333
17014090 334All writing options will per default write to the repository specific
bcf9626a
MM
335configuration file. Note that this also affects options like `--replace-all`
336and `--unset`. *'git config' will only ever change one file at a time*.
17014090 337
73428385
JK
338You can override these rules using the `--global`, `--system`,
339`--local`, `--worktree`, and `--file` command-line options; see
340<<OPTIONS>> above.
17014090 341
17014090 342
e0d10e1c
TP
343ENVIRONMENT
344-----------
345
4179b489
PS
346GIT_CONFIG_GLOBAL::
347GIT_CONFIG_SYSTEM::
348 Take the configuration from the given files instead from global or
349 system-level configuration. See linkgit:git[1] for details.
350
e8ef401c
JN
351GIT_CONFIG_NOSYSTEM::
352 Whether to skip reading settings from the system-wide
353 $(prefix)/etc/gitconfig file. See linkgit:git[1] for details.
354
17014090 355See also <<FILES>>.
e0d10e1c 356
d8d77153
PS
357GIT_CONFIG_COUNT::
358GIT_CONFIG_KEY_<n>::
359GIT_CONFIG_VALUE_<n>::
360 If GIT_CONFIG_COUNT is set to a positive number, all environment pairs
361 GIT_CONFIG_KEY_<n> and GIT_CONFIG_VALUE_<n> up to that number will be
362 added to the process's runtime configuration. The config pairs are
363 zero-indexed. Any missing key or value is treated as an error. An empty
364 GIT_CONFIG_COUNT is treated the same as GIT_CONFIG_COUNT=0, namely no
365 pairs are processed. These environment variables will override values
366 in configuration files, but will be overridden by any explicit options
367 passed via `git -c`.
368+
369This is useful for cases where you want to spawn multiple git commands
370with a common configuration but cannot depend on a configuration file,
371for example when writing scripts.
372
b3b18626
JK
373GIT_CONFIG::
374 If no `--file` option is provided to `git config`, use the file
375 given by `GIT_CONFIG` as if it were provided via `--file`. This
376 variable has no effect on other Git commands, and is mostly for
377 historical compatibility; there is generally no reason to use it
378 instead of the `--file` option.
90a36e58
FL
379
380[[EXAMPLES]]
381EXAMPLES
382--------
e0d10e1c
TP
383
384Given a .git/config like this:
385
1925fe0c
386------------
387#
388# This is the config file, and
389# a '#' or ';' character indicates
390# a comment
391#
392
393; core variables
394[core]
395 ; Don't trust file modes
396 filemode = false
397
398; Our diff algorithm
399[diff]
400 external = /usr/local/bin/diff-wrapper
401 renames = true
402
403; Proxy settings
404[core]
405 gitproxy=proxy-command for kernel.org
406 gitproxy=default-proxy ; for all the rest
407
408; HTTP
409[http]
410 sslVerify
411[http "https://weak.example.com"]
412 sslVerify = false
413 cookieFile = /tmp/cookie.txt
414------------
d4770964 415
e0d10e1c
TP
416you can set the filemode to true with
417
418------------
419% git config core.filemode true
420------------
421
422The hypothetical proxy command entries actually have a postfix to discern
423what URL they apply to. Here is how to change the entry for kernel.org
424to "ssh".
425
426------------
427% git config core.gitproxy '"ssh" for kernel.org' 'for kernel.org$'
428------------
429
430This makes sure that only the key/value pair for kernel.org is replaced.
431
432To delete the entry for renames, do
433
434------------
435% git config --unset diff.renames
436------------
437
438If you want to delete an entry for a multivar (like core.gitproxy above),
439you have to provide a regex matching the value of exactly one line.
440
441To query the value for a given key, do
442
443------------
444% git config --get core.filemode
445------------
446
447or
448
449------------
450% git config core.filemode
451------------
452
453or, to query a multivar:
454
455------------
456% git config --get core.gitproxy "for kernel.org$"
457------------
458
459If you want to know all the values for a multivar, do:
460
461------------
462% git config --get-all core.gitproxy
463------------
464
544ddb04 465If you like to live dangerously, you can replace *all* core.gitproxy by a
e0d10e1c
TP
466new one with
467
468------------
469% git config --replace-all core.gitproxy ssh
470------------
471
472However, if you really only want to replace the line for the default proxy,
473i.e. the one without a "for ..." postfix, do something like this:
474
475------------
476% git config core.gitproxy ssh '! for '
477------------
478
479To actually match only values with an exclamation mark, you have to
480
481------------
482% git config section.key value '[!]'
483------------
484
485To add a new proxy, without altering any of the existing ones, use
486
487------------
d0714cc8 488% git config --add core.gitproxy '"proxy-command" for example.com'
e0d10e1c
TP
489------------
490
9ce03522
JH
491An example to use customized color from the configuration in your
492script:
493
494------------
495#!/bin/sh
496WS=$(git config --get-color color.diff.whitespace "blue reverse")
497RESET=$(git config --get-color "" "reset")
498echo "${WS}your whitespace color or blue reverse${RESET}"
499------------
e0d10e1c 500
d4770964
JH
501For URLs in `https://weak.example.com`, `http.sslVerify` is set to
502false, while it is set to `true` for all others:
503
504------------
ed3bb3df 505% git config --type=bool --get-urlmatch http.sslverify https://good.example.com
d4770964 506true
ed3bb3df 507% git config --type=bool --get-urlmatch http.sslverify https://weak.example.com
d4770964
JH
508false
509% git config --get-urlmatch http https://weak.example.com
da0005b8 510http.cookieFile /tmp/cookie.txt
d4770964
JH
511http.sslverify false
512------------
513
e0d10e1c
TP
514include::config.txt[]
515
bff7df7a
SB
516BUGS
517----
518When using the deprecated `[section.subsection]` syntax, changing a value
519will result in adding a multi-line key instead of a change, if the subsection
520is given with at least one uppercase character. For example when the config
521looks like
522
523--------
524 [section.subsection]
525 key = value1
526--------
527
528and running `git config section.Subsection.key value2` will result in
529
530--------
531 [section.subsection]
532 key = value1
533 key = value2
534--------
535
536
e0d10e1c
TP
537GIT
538---
9e1f0a85 539Part of the linkgit:git[1] suite