Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 1 | git-config(1) |
| 2 | ============= |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | git-config - Get and set repository or global options |
| 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
| 11 | [verse] |
Jean-Noël Avila | 49cbad0 | 2021-11-06 19:48:51 +0100 | [diff] [blame] | 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> |
Matthew Rogers | 145d59f | 2020-02-10 00:30:59 +0000 | [diff] [blame] | 23 | 'git config' [<file-option>] [--show-origin] [--show-scope] [-z|--null] [--name-only] -l | --list |
Jean-Noël Avila | 49cbad0 | 2021-11-06 19:48:51 +0100 | [diff] [blame] | 24 | 'git config' [<file-option>] --get-color <name> [<default>] |
| 25 | 'git config' [<file-option>] --get-colorbool <name> [<stdout-is-tty>] |
Felipe Contreras | 3bec8ff | 2009-02-07 23:53:00 +0200 | [diff] [blame] | 26 | 'git config' [<file-option>] -e | --edit |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 27 | |
| 28 | DESCRIPTION |
| 29 | ----------- |
| 30 | You can query/set/replace/unset options with this command. The name is |
| 31 | actually the section and the key separated by a dot, and the value will be |
| 32 | escaped. |
| 33 | |
Matthieu Moy | bcf9626 | 2016-06-28 13:40:11 +0200 | [diff] [blame] | 34 | Multiple lines can be added to an option by using the `--add` option. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 35 | If you want to update or unset an option which can occur on multiple |
Junio C Hamano | c902618 | 2020-11-25 15:01:31 -0800 | [diff] [blame] | 36 | lines, a `value-pattern` (which is an extended regular expression, |
| 37 | unless the `--fixed-value` option is given) needs to be given. Only the |
| 38 | existing values that match the pattern are updated or unset. If |
| 39 | you want to handle the lines that do *not* match the pattern, just |
| 40 | prepend a single exclamation mark in front (see also <<EXAMPLES>>), |
| 41 | but note that this only works when the `--fixed-value` option is not |
| 42 | in use. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 43 | |
Taylor Blau | fb0dc3b | 2018-04-18 14:43:35 -0700 | [diff] [blame] | 44 | The `--type=<type>` option instructs 'git config' to ensure that incoming and |
| 45 | outgoing values are canonicalize-able under the given <type>. If no |
| 46 | `--type=<type>` is given, no canonicalization will be performed. Callers may |
| 47 | unset an existing `--type` specifier with `--no-type`. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 48 | |
Florian Achleitner | c598c5a | 2012-05-05 12:03:52 +0200 | [diff] [blame] | 49 | When reading, the values are read from the system, global and |
| 50 | repository local configuration files by default, and options |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 51 | `--system`, `--global`, `--local`, `--worktree` and |
| 52 | `--file <filename>` can be used to tell the command to read from only |
| 53 | that location (see <<FILES>>). |
Florian Achleitner | c598c5a | 2012-05-05 12:03:52 +0200 | [diff] [blame] | 54 | |
| 55 | When writing, the new value is written to the repository local |
Matthieu Moy | bcf9626 | 2016-06-28 13:40:11 +0200 | [diff] [blame] | 56 | configuration file by default, and options `--system`, `--global`, |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 57 | `--worktree`, `--file <filename>` can be used to tell the command to |
| 58 | write to that location (you can say `--local` but that is the |
| 59 | default). |
Alex Riesen | be52a41 | 2007-08-01 00:01:17 +0200 | [diff] [blame] | 60 | |
Junio C Hamano | 9409c7a | 2012-07-29 13:43:21 -0700 | [diff] [blame] | 61 | This command will fail with non-zero status upon error. Some exit |
| 62 | codes are: |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 63 | |
Stefan Beller | 376eb60 | 2016-04-26 11:10:58 -0700 | [diff] [blame] | 64 | - The section or key is invalid (ret=1), |
John Keeping | 94c5b0e | 2016-02-28 11:54:36 +0000 | [diff] [blame] | 65 | - no section or name was provided (ret=2), |
Stefan Beller | 376eb60 | 2016-04-26 11:10:58 -0700 | [diff] [blame] | 66 | - the config file is invalid (ret=3), |
| 67 | - the config file cannot be written (ret=4), |
John Keeping | 94c5b0e | 2016-02-28 11:54:36 +0000 | [diff] [blame] | 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). |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 71 | |
Michael J Gruber | 7a39741 | 2011-05-17 17:38:52 +0200 | [diff] [blame] | 72 | On success, the command returns the exit code 0. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 73 | |
Philip Oakley | ae578de | 2021-09-13 22:23:05 +0100 | [diff] [blame] | 74 | A list of all available configuration variables can be obtained using the |
| 75 | `git help --config` command. |
| 76 | |
Jeff King | 7342838 | 2021-07-14 17:38:27 -0400 | [diff] [blame] | 77 | [[OPTIONS]] |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 78 | OPTIONS |
| 79 | ------- |
| 80 | |
| 81 | --replace-all:: |
| 82 | Default behavior is to replace at most one line. This replaces |
Derrick Stolee | 247e2f8 | 2020-11-25 22:12:50 +0000 | [diff] [blame] | 83 | all lines matching the key (and optionally the `value-pattern`). |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 84 | |
| 85 | --add:: |
| 86 | Adds a new line to the option without altering any existing |
Derrick Stolee | 247e2f8 | 2020-11-25 22:12:50 +0000 | [diff] [blame] | 87 | values. This is the same as providing '^$' as the `value-pattern` |
Felipe Contreras | ac9f71c | 2009-05-07 01:57:08 +0300 | [diff] [blame] | 88 | in `--replace-all`. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 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 |
John Keeping | 62e91ef | 2013-07-03 19:27:39 +0100 | [diff] [blame] | 93 | found and the last value if multiple key values were found. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 94 | |
| 95 | --get-all:: |
John Keeping | 24990b2 | 2016-02-28 11:54:37 +0000 | [diff] [blame] | 96 | Like get, but returns all values for a multi-valued key. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 97 | |
| 98 | --get-regexp:: |
Libor Pechacek | e0a4aae | 2012-03-01 11:59:45 +0100 | [diff] [blame] | 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. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 104 | |
Jean-Noël Avila | 49cbad0 | 2021-11-06 19:48:51 +0100 | [diff] [blame] | 105 | --get-urlmatch <name> <URL>:: |
Jean-Noël Avila | 51e846e | 2023-12-25 21:21:27 +0000 | [diff] [blame] | 106 | When given a two-part <name> as <section>.<key>, the value for |
| 107 | <section>.<URL>.<key> whose <URL> part matches the best to the |
Junio C Hamano | d477096 | 2013-07-31 11:14:59 -0700 | [diff] [blame] | 108 | given URL is returned (if no such key exists, the value for |
Jean-Noël Avila | 51e846e | 2023-12-25 21:21:27 +0000 | [diff] [blame] | 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 |
John Keeping | 27b30be | 2016-02-28 11:54:35 +0000 | [diff] [blame] | 111 | list them. Returns error code 1 if no value is found. |
Junio C Hamano | d477096 | 2013-07-31 11:14:59 -0700 | [diff] [blame] | 112 | |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 113 | --global:: |
Ramkumar Ramachandra | 5ff0c0e | 2013-07-26 16:12:02 +0530 | [diff] [blame] | 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. |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 118 | + |
Ramkumar Ramachandra | 5ff0c0e | 2013-07-26 16:12:02 +0530 | [diff] [blame] | 119 | For reading options: read only from global `~/.gitconfig` and from |
| 120 | `$XDG_CONFIG_HOME/git/config` rather than from all available files. |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 121 | + |
| 122 | See also <<FILES>>. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 123 | |
Andrew Ruder | 9bc20aa | 2007-04-18 22:03:37 -0500 | [diff] [blame] | 124 | --system:: |
Ramkumar Ramachandra | 5ff0c0e | 2013-07-26 16:12:02 +0530 | [diff] [blame] | 125 | For writing options: write to system-wide |
| 126 | `$(prefix)/etc/gitconfig` rather than the repository |
| 127 | `.git/config`. |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 128 | + |
Ramkumar Ramachandra | 5ff0c0e | 2013-07-26 16:12:02 +0530 | [diff] [blame] | 129 | For reading options: read only from system-wide `$(prefix)/etc/gitconfig` |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 130 | rather than from all available files. |
| 131 | + |
| 132 | See also <<FILES>>. |
Andrew Ruder | 9bc20aa | 2007-04-18 22:03:37 -0500 | [diff] [blame] | 133 | |
Namhyung Kim | 560d4b8 | 2013-06-17 22:31:31 +0900 | [diff] [blame] | 134 | --local:: |
Ramkumar Ramachandra | 5ff0c0e | 2013-07-26 16:12:02 +0530 | [diff] [blame] | 135 | For writing options: write to the repository `.git/config` file. |
Martin Ågren | 8d75a1d | 2019-03-06 07:30:18 +0100 | [diff] [blame] | 136 | This is the default behavior. |
Namhyung Kim | 560d4b8 | 2013-06-17 22:31:31 +0900 | [diff] [blame] | 137 | + |
Ramkumar Ramachandra | 5ff0c0e | 2013-07-26 16:12:02 +0530 | [diff] [blame] | 138 | For reading options: read only from the repository `.git/config` rather than |
Namhyung Kim | 560d4b8 | 2013-06-17 22:31:31 +0900 | [diff] [blame] | 139 | from all available files. |
| 140 | + |
| 141 | See also <<FILES>>. |
| 142 | |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 143 | --worktree:: |
Derrick Stolee | 5c11c0d | 2022-02-07 21:32:58 +0000 | [diff] [blame] | 144 | Similar to `--local` except that `$GIT_DIR/config.worktree` is |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 145 | read from or written to if `extensions.worktreeConfig` is |
Derrick Stolee | 5c11c0d | 2022-02-07 21:32:58 +0000 | [diff] [blame] | 146 | enabled. If not it's the same as `--local`. Note that `$GIT_DIR` |
| 147 | is equal to `$GIT_COMMON_DIR` for the main working tree, but is of |
| 148 | the form `$GIT_DIR/worktrees/<id>/` for other working trees. See |
| 149 | linkgit:git-worktree[1] to learn how to enable |
| 150 | `extensions.worktreeConfig`. |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 151 | |
Jean-Noël Avila | 49cbad0 | 2021-11-06 19:48:51 +0100 | [diff] [blame] | 152 | -f <config-file>:: |
| 153 | --file <config-file>:: |
Jeff King | 4bb9eb5 | 2021-07-14 17:37:29 -0400 | [diff] [blame] | 154 | For writing options: write to the specified file rather than the |
| 155 | repository `.git/config`. |
| 156 | + |
| 157 | For reading options: read only from the specified file rather than from all |
| 158 | available files. |
| 159 | + |
| 160 | See also <<FILES>>. |
Alex Riesen | 67d454f | 2007-07-31 11:58:43 +0200 | [diff] [blame] | 161 | |
Jean-Noël Avila | 49cbad0 | 2021-11-06 19:48:51 +0100 | [diff] [blame] | 162 | --blob <blob>:: |
Matthieu Moy | bcf9626 | 2016-06-28 13:40:11 +0200 | [diff] [blame] | 163 | Similar to `--file` but use the given blob instead of a file. E.g. |
Heiko Voigt | 1bc8881 | 2013-07-12 00:46:47 +0200 | [diff] [blame] | 164 | you can use 'master:.gitmodules' to read values from the file |
| 165 | '.gitmodules' in the master branch. See "SPECIFYING REVISIONS" |
| 166 | section in linkgit:gitrevisions[7] for a more complete list of |
| 167 | ways to spell blob names. |
| 168 | |
Paolo Bonzini | 118f8b2 | 2007-03-02 21:53:33 +0100 | [diff] [blame] | 169 | --remove-section:: |
| 170 | Remove the given section from the configuration file. |
| 171 | |
| 172 | --rename-section:: |
| 173 | Rename the given section to a new name. |
| 174 | |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 175 | --unset:: |
| 176 | Remove the line matching the key from config file. |
| 177 | |
| 178 | --unset-all:: |
Yann Dirson | 9debca9 | 2007-03-14 22:08:41 +0100 | [diff] [blame] | 179 | Remove all lines matching the key from config file. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 180 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 181 | -l:: |
| 182 | --list:: |
SZEDER Gábor | 578625f | 2015-08-10 11:46:06 +0200 | [diff] [blame] | 183 | List all variables set in config file, along with their values. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 184 | |
Derrick Stolee | fda4394 | 2020-11-25 22:12:53 +0000 | [diff] [blame] | 185 | --fixed-value:: |
| 186 | When used with the `value-pattern` argument, treat `value-pattern` as |
| 187 | an exact string instead of a regular expression. This will restrict |
| 188 | the name/value pairs that are matched to only those where the value |
| 189 | is exactly equal to the `value-pattern`. |
| 190 | |
Taylor Blau | fb0dc3b | 2018-04-18 14:43:35 -0700 | [diff] [blame] | 191 | --type <type>:: |
| 192 | 'git config' will ensure that any input or output is valid under the given |
| 193 | type constraint(s), and will canonicalize outgoing values in `<type>`'s |
| 194 | canonical form. |
| 195 | + |
| 196 | Valid `<type>`'s include: |
| 197 | + |
| 198 | - 'bool': canonicalize values as either "true" or "false". |
| 199 | - 'int': canonicalize values as simple decimal numbers. An optional suffix of |
| 200 | 'k', 'm', or 'g' will cause the value to be multiplied by 1024, 1048576, or |
| 201 | 1073741824 upon input. |
| 202 | - 'bool-or-int': canonicalize according to either 'bool' or 'int', as described |
| 203 | above. |
Evan Gates | 58be114 | 2023-09-15 14:24:59 -0600 | [diff] [blame] | 204 | - 'path': canonicalize by expanding a leading `~` to the value of `$HOME` and |
Taylor Blau | fb0dc3b | 2018-04-18 14:43:35 -0700 | [diff] [blame] | 205 | `~user` to the home directory for the specified user. This specifier has no |
| 206 | effect when setting the value (but you can use `git config section.variable |
| 207 | ~/` from the command line to let your shell do the expansion.) |
| 208 | - 'expiry-date': canonicalize by converting from a fixed or relative date-string |
| 209 | to a timestamp. This specifier has no effect when setting the value. |
Taylor Blau | 63e2a0f | 2018-04-09 17:18:31 -0700 | [diff] [blame] | 210 | - 'color': When getting a value, canonicalize by converting to an ANSI color |
| 211 | escape sequence. When setting a value, a sanity-check is performed to ensure |
| 212 | that the given value is canonicalize-able as an ANSI color, but it is written |
| 213 | as-is. |
Taylor Blau | fb0dc3b | 2018-04-18 14:43:35 -0700 | [diff] [blame] | 214 | + |
| 215 | |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 216 | --bool:: |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 217 | --int:: |
Jeff King | d57f07e | 2009-03-07 12:14:06 -0500 | [diff] [blame] | 218 | --bool-or-int:: |
Matthieu Moy | 1349484 | 2009-12-30 17:51:53 +0100 | [diff] [blame] | 219 | --path:: |
Haaris Mehmood | 5f96742 | 2017-11-18 02:27:27 +0000 | [diff] [blame] | 220 | --expiry-date:: |
Martin Ågren | 08caa95 | 2018-09-19 18:38:19 +0200 | [diff] [blame] | 221 | Historical options for selecting a type specifier. Prefer instead `--type` |
| 222 | (see above). |
Taylor Blau | fb0dc3b | 2018-04-18 14:43:35 -0700 | [diff] [blame] | 223 | |
| 224 | --no-type:: |
| 225 | Un-sets the previously set type specifier (if one was previously set). This |
| 226 | option requests that 'git config' not canonicalize the retrieved variable. |
| 227 | `--no-type` has no effect without `--type=<type>` or `--<type>`. |
Haaris Mehmood | 5f96742 | 2017-11-18 02:27:27 +0000 | [diff] [blame] | 228 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 229 | -z:: |
| 230 | --null:: |
Frank Lichtenheld | 2275d50 | 2007-06-25 16:03:55 +0200 | [diff] [blame] | 231 | For all options that output values and/or keys, always |
Jim Meyering | a5d86f7 | 2008-01-29 20:38:55 +0100 | [diff] [blame] | 232 | end values with the null character (instead of a |
Frank Lichtenheld | 2275d50 | 2007-06-25 16:03:55 +0200 | [diff] [blame] | 233 | newline). Use newline instead as a delimiter between |
| 234 | key and value. This allows for secure parsing of the |
| 235 | output without getting confused e.g. by values that |
| 236 | contain line breaks. |
| 237 | |
SZEDER Gábor | 578625f | 2015-08-10 11:46:06 +0200 | [diff] [blame] | 238 | --name-only:: |
| 239 | Output only the names of config variables for `--list` or |
| 240 | `--get-regexp`. |
| 241 | |
Lars Schneider | 70bd879 | 2016-02-19 10:16:02 +0100 | [diff] [blame] | 242 | --show-origin:: |
| 243 | Augment the output of all queried config options with the |
| 244 | origin type (file, standard input, blob, command line) and |
| 245 | the actual origin (config file path, ref, or blob id if |
| 246 | applicable). |
| 247 | |
Matthew Rogers | 145d59f | 2020-02-10 00:30:59 +0000 | [diff] [blame] | 248 | --show-scope:: |
| 249 | Similar to `--show-origin` in that it augments the output of |
| 250 | all queried config options with the scope of that value |
Glen Choo | db7961e | 2022-06-07 21:24:04 +0000 | [diff] [blame] | 251 | (worktree, local, global, system, command). |
Matthew Rogers | 145d59f | 2020-02-10 00:30:59 +0000 | [diff] [blame] | 252 | |
Jean-Noël Avila | 49cbad0 | 2021-11-06 19:48:51 +0100 | [diff] [blame] | 253 | --get-colorbool <name> [<stdout-is-tty>]:: |
Junio C Hamano | 0f6f5a4 | 2007-12-05 17:26:11 -0800 | [diff] [blame] | 254 | |
Jean-Noël Avila | 49cbad0 | 2021-11-06 19:48:51 +0100 | [diff] [blame] | 255 | Find the color setting for `<name>` (e.g. `color.diff`) and output |
| 256 | "true" or "false". `<stdout-is-tty>` should be either "true" or |
Junio C Hamano | 0f6f5a4 | 2007-12-05 17:26:11 -0800 | [diff] [blame] | 257 | "false", and is taken into account when configuration says |
Jean-Noël Avila | 49cbad0 | 2021-11-06 19:48:51 +0100 | [diff] [blame] | 258 | "auto". If `<stdout-is-tty>` is missing, then checks the standard |
Junio C Hamano | 0f6f5a4 | 2007-12-05 17:26:11 -0800 | [diff] [blame] | 259 | output of the command itself, and exits with status 0 if color |
| 260 | is to be used, or exits with status 1 otherwise. |
Matthias Kestenholz | 4d4f5ba | 2008-04-09 21:32:06 +0200 | [diff] [blame] | 261 | When the color setting for `name` is undefined, the command uses |
| 262 | `color.ui` as fallback. |
Junio C Hamano | 0f6f5a4 | 2007-12-05 17:26:11 -0800 | [diff] [blame] | 263 | |
Jean-Noël Avila | 49cbad0 | 2021-11-06 19:48:51 +0100 | [diff] [blame] | 264 | --get-color <name> [<default>]:: |
Junio C Hamano | 9ce0352 | 2007-11-27 22:41:05 -0800 | [diff] [blame] | 265 | |
| 266 | Find the color configured for `name` (e.g. `color.diff.new`) and |
| 267 | output it as the ANSI color escape sequence to the standard |
| 268 | output. The optional `default` parameter is used instead, if |
| 269 | there is no color configured for `name`. |
Taylor Blau | 63e2a0f | 2018-04-09 17:18:31 -0700 | [diff] [blame] | 270 | + |
Jeff King | cd8e759 | 2019-03-04 23:20:51 -0500 | [diff] [blame] | 271 | `--type=color [--default=<default>]` is preferred over `--get-color` |
| 272 | (but note that `--get-color` will omit the trailing newline printed by |
| 273 | `--type=color`). |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 274 | |
Felipe Contreras | 3bec8ff | 2009-02-07 23:53:00 +0200 | [diff] [blame] | 275 | -e:: |
| 276 | --edit:: |
| 277 | Opens an editor to modify the specified config file; either |
Matthieu Moy | bcf9626 | 2016-06-28 13:40:11 +0200 | [diff] [blame] | 278 | `--system`, `--global`, or repository (default). |
Felipe Contreras | 3bec8ff | 2009-02-07 23:53:00 +0200 | [diff] [blame] | 279 | |
Felipe Contreras | 0460ed2 | 2013-05-08 20:16:55 -0500 | [diff] [blame] | 280 | --[no-]includes:: |
Jeff King | 9b25a0b | 2012-02-06 04:54:04 -0500 | [diff] [blame] | 281 | Respect `include.*` directives in config files when looking up |
Jeff King | 753a2cd | 2015-01-19 14:58:47 -0500 | [diff] [blame] | 282 | values. Defaults to `off` when a specific file is given (e.g., |
| 283 | using `--file`, `--global`, etc) and `on` when searching all |
| 284 | config files. |
Jeff King | 9b25a0b | 2012-02-06 04:54:04 -0500 | [diff] [blame] | 285 | |
Taylor Blau | eeaa24b | 2018-04-09 17:18:26 -0700 | [diff] [blame] | 286 | --default <value>:: |
| 287 | When using `--get`, and the requested variable is not found, behave as if |
| 288 | <value> were the value assigned to the that variable. |
| 289 | |
Martin Ågren | 32888b8 | 2018-02-21 19:51:43 +0100 | [diff] [blame] | 290 | CONFIGURATION |
| 291 | ------------- |
| 292 | `pager.config` is only respected when listing configuration, i.e., when |
| 293 | using `--list` or any of the `--get-*` which may return multiple results. |
Martin Ågren | c0e9f5b | 2018-02-21 19:51:44 +0100 | [diff] [blame] | 294 | The default is to use a pager. |
Martin Ågren | 32888b8 | 2018-02-21 19:51:43 +0100 | [diff] [blame] | 295 | |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 296 | [[FILES]] |
| 297 | FILES |
| 298 | ----- |
| 299 | |
Glen Choo | 5f5af37 | 2022-07-14 21:27:57 +0000 | [diff] [blame] | 300 | By default, 'git config' will read configuration options from multiple |
| 301 | files: |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 302 | |
John Keeping | 7da9800 | 2013-07-07 20:49:56 +0100 | [diff] [blame] | 303 | $(prefix)/etc/gitconfig:: |
| 304 | System-wide configuration file. |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 305 | |
Huynh Khoi Nguyen Nguyen | 21cf322 | 2012-06-22 11:03:23 +0200 | [diff] [blame] | 306 | $XDG_CONFIG_HOME/git/config:: |
John Keeping | 7da9800 | 2013-07-07 20:49:56 +0100 | [diff] [blame] | 307 | ~/.gitconfig:: |
Glen Choo | 5f5af37 | 2022-07-14 21:27:57 +0000 | [diff] [blame] | 308 | User-specific configuration files. When the XDG_CONFIG_HOME environment |
| 309 | variable is not set or empty, $HOME/.config/ is used as |
| 310 | $XDG_CONFIG_HOME. |
| 311 | + |
| 312 | These are also called "global" configuration files. If both files exist, both |
| 313 | files are read in the order given above. |
John Keeping | 7da9800 | 2013-07-07 20:49:56 +0100 | [diff] [blame] | 314 | |
| 315 | $GIT_DIR/config:: |
| 316 | Repository specific configuration file. |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 317 | |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 318 | $GIT_DIR/config.worktree:: |
| 319 | This is optional and is only searched when |
| 320 | `extensions.worktreeConfig` is present in $GIT_DIR/config. |
| 321 | |
Glen Choo | 5f5af37 | 2022-07-14 21:27:57 +0000 | [diff] [blame] | 322 | You may also provide additional configuration parameters when running any |
| 323 | git command by using the `-c` option. See linkgit:git[1] for details. |
| 324 | |
| 325 | Options will be read from all of these files that are available. If the |
| 326 | global or the system-wide configuration files are missing or unreadable they |
| 327 | will be ignored. If the repository configuration file is missing or unreadable, |
| 328 | 'git config' will exit with a non-zero error code. An error message is produced |
| 329 | if the file is unreadable, but not if it is missing. |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 330 | |
John Keeping | 7da9800 | 2013-07-07 20:49:56 +0100 | [diff] [blame] | 331 | The files are read in the order given above, with last value found taking |
| 332 | precedence over values read earlier. When multiple values are taken then all |
| 333 | values of a key from all files will be used. |
| 334 | |
Glen Choo | 5f5af37 | 2022-07-14 21:27:57 +0000 | [diff] [blame] | 335 | By default, options are only written to the repository specific |
Matthieu Moy | bcf9626 | 2016-06-28 13:40:11 +0200 | [diff] [blame] | 336 | configuration file. Note that this also affects options like `--replace-all` |
| 337 | and `--unset`. *'git config' will only ever change one file at a time*. |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 338 | |
Glen Choo | 5f5af37 | 2022-07-14 21:27:57 +0000 | [diff] [blame] | 339 | You can limit which configuration sources are read from or written to by |
| 340 | specifying the path of a file with the `--file` option, or by specifying a |
| 341 | configuration scope with `--system`, `--global`, `--local`, or `--worktree`. |
| 342 | For more, see <<OPTIONS>> above. |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 343 | |
Glen Choo | 779ea93 | 2022-07-14 21:27:58 +0000 | [diff] [blame] | 344 | [[SCOPES]] |
Glen Choo | 5f5af37 | 2022-07-14 21:27:57 +0000 | [diff] [blame] | 345 | SCOPES |
| 346 | ------ |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 347 | |
Glen Choo | 5f5af37 | 2022-07-14 21:27:57 +0000 | [diff] [blame] | 348 | Each configuration source falls within a configuration scope. The scopes |
| 349 | are: |
| 350 | |
| 351 | system:: |
| 352 | $(prefix)/etc/gitconfig |
| 353 | |
| 354 | global:: |
| 355 | $XDG_CONFIG_HOME/git/config |
| 356 | + |
| 357 | ~/.gitconfig |
| 358 | |
| 359 | local:: |
| 360 | $GIT_DIR/config |
| 361 | |
| 362 | worktree:: |
| 363 | $GIT_DIR/config.worktree |
| 364 | |
| 365 | command:: |
| 366 | GIT_CONFIG_{COUNT,KEY,VALUE} environment variables (see <<ENVIRONMENT>> |
| 367 | below) |
| 368 | + |
| 369 | the `-c` option |
| 370 | |
| 371 | With the exception of 'command', each scope corresponds to a command line |
| 372 | option: `--system`, `--global`, `--local`, `--worktree`. |
| 373 | |
| 374 | When reading options, specifying a scope will only read options from the |
| 375 | files within that scope. When writing options, specifying a scope will write |
| 376 | to the files within that scope (instead of the repository specific |
| 377 | configuration file). See <<OPTIONS>> above for a complete description. |
| 378 | |
| 379 | Most configuration options are respected regardless of the scope it is |
| 380 | defined in, but some options are only respected in certain scopes. See the |
| 381 | respective option's documentation for the full details. |
| 382 | |
Glen Choo | 779ea93 | 2022-07-14 21:27:58 +0000 | [diff] [blame] | 383 | Protected configuration |
| 384 | ~~~~~~~~~~~~~~~~~~~~~~~ |
| 385 | |
| 386 | Protected configuration refers to the 'system', 'global', and 'command' scopes. |
| 387 | For security reasons, certain options are only respected when they are |
| 388 | specified in protected configuration, and ignored otherwise. |
| 389 | |
| 390 | Git treats these scopes as if they are controlled by the user or a trusted |
| 391 | administrator. This is because an attacker who controls these scopes can do |
| 392 | substantial harm without using Git, so it is assumed that the user's environment |
| 393 | protects these scopes against attackers. |
| 394 | |
Glen Choo | 5f5af37 | 2022-07-14 21:27:57 +0000 | [diff] [blame] | 395 | [[ENVIRONMENT]] |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 396 | ENVIRONMENT |
| 397 | ----------- |
| 398 | |
Patrick Steinhardt | 4179b48 | 2021-04-19 14:31:16 +0200 | [diff] [blame] | 399 | GIT_CONFIG_GLOBAL:: |
| 400 | GIT_CONFIG_SYSTEM:: |
| 401 | Take the configuration from the given files instead from global or |
| 402 | system-level configuration. See linkgit:git[1] for details. |
| 403 | |
Jonathan Nieder | e8ef401 | 2012-10-14 01:53:59 -0700 | [diff] [blame] | 404 | GIT_CONFIG_NOSYSTEM:: |
| 405 | Whether to skip reading settings from the system-wide |
| 406 | $(prefix)/etc/gitconfig file. See linkgit:git[1] for details. |
| 407 | |
Frank Lichtenheld | 1701409 | 2007-05-31 02:35:37 +0200 | [diff] [blame] | 408 | See also <<FILES>>. |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 409 | |
Patrick Steinhardt | d8d7715 | 2021-01-12 13:27:14 +0100 | [diff] [blame] | 410 | GIT_CONFIG_COUNT:: |
| 411 | GIT_CONFIG_KEY_<n>:: |
| 412 | GIT_CONFIG_VALUE_<n>:: |
| 413 | If GIT_CONFIG_COUNT is set to a positive number, all environment pairs |
| 414 | GIT_CONFIG_KEY_<n> and GIT_CONFIG_VALUE_<n> up to that number will be |
| 415 | added to the process's runtime configuration. The config pairs are |
| 416 | zero-indexed. Any missing key or value is treated as an error. An empty |
| 417 | GIT_CONFIG_COUNT is treated the same as GIT_CONFIG_COUNT=0, namely no |
| 418 | pairs are processed. These environment variables will override values |
| 419 | in configuration files, but will be overridden by any explicit options |
| 420 | passed via `git -c`. |
| 421 | + |
| 422 | This is useful for cases where you want to spawn multiple git commands |
| 423 | with a common configuration but cannot depend on a configuration file, |
| 424 | for example when writing scripts. |
| 425 | |
Jeff King | b3b1862 | 2021-07-14 17:38:16 -0400 | [diff] [blame] | 426 | GIT_CONFIG:: |
| 427 | If no `--file` option is provided to `git config`, use the file |
| 428 | given by `GIT_CONFIG` as if it were provided via `--file`. This |
| 429 | variable has no effect on other Git commands, and is mostly for |
| 430 | historical compatibility; there is generally no reason to use it |
| 431 | instead of the `--file` option. |
Frank Lichtenheld | 90a36e5 | 2007-05-31 02:35:36 +0200 | [diff] [blame] | 432 | |
| 433 | [[EXAMPLES]] |
| 434 | EXAMPLES |
| 435 | -------- |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 436 | |
| 437 | Given a .git/config like this: |
| 438 | |
Martin Ågren | 1925fe0 | 2019-09-07 16:12:49 +0200 | [diff] [blame] | 439 | ------------ |
| 440 | # |
| 441 | # This is the config file, and |
| 442 | # a '#' or ';' character indicates |
| 443 | # a comment |
| 444 | # |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 445 | |
Martin Ågren | 1925fe0 | 2019-09-07 16:12:49 +0200 | [diff] [blame] | 446 | ; core variables |
| 447 | [core] |
| 448 | ; Don't trust file modes |
| 449 | filemode = false |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 450 | |
Martin Ågren | 1925fe0 | 2019-09-07 16:12:49 +0200 | [diff] [blame] | 451 | ; Our diff algorithm |
| 452 | [diff] |
| 453 | external = /usr/local/bin/diff-wrapper |
| 454 | renames = true |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 455 | |
Martin Ågren | 1925fe0 | 2019-09-07 16:12:49 +0200 | [diff] [blame] | 456 | ; Proxy settings |
| 457 | [core] |
| 458 | gitproxy=proxy-command for kernel.org |
| 459 | gitproxy=default-proxy ; for all the rest |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 460 | |
Martin Ågren | 1925fe0 | 2019-09-07 16:12:49 +0200 | [diff] [blame] | 461 | ; HTTP |
| 462 | [http] |
| 463 | sslVerify |
| 464 | [http "https://weak.example.com"] |
| 465 | sslVerify = false |
| 466 | cookieFile = /tmp/cookie.txt |
| 467 | ------------ |
Junio C Hamano | d477096 | 2013-07-31 11:14:59 -0700 | [diff] [blame] | 468 | |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 469 | you can set the filemode to true with |
| 470 | |
| 471 | ------------ |
| 472 | % git config core.filemode true |
| 473 | ------------ |
| 474 | |
| 475 | The hypothetical proxy command entries actually have a postfix to discern |
| 476 | what URL they apply to. Here is how to change the entry for kernel.org |
| 477 | to "ssh". |
| 478 | |
| 479 | ------------ |
| 480 | % git config core.gitproxy '"ssh" for kernel.org' 'for kernel.org$' |
| 481 | ------------ |
| 482 | |
| 483 | This makes sure that only the key/value pair for kernel.org is replaced. |
| 484 | |
| 485 | To delete the entry for renames, do |
| 486 | |
| 487 | ------------ |
| 488 | % git config --unset diff.renames |
| 489 | ------------ |
| 490 | |
| 491 | If you want to delete an entry for a multivar (like core.gitproxy above), |
| 492 | you have to provide a regex matching the value of exactly one line. |
| 493 | |
| 494 | To query the value for a given key, do |
| 495 | |
| 496 | ------------ |
| 497 | % git config --get core.filemode |
| 498 | ------------ |
| 499 | |
| 500 | or |
| 501 | |
| 502 | ------------ |
| 503 | % git config core.filemode |
| 504 | ------------ |
| 505 | |
| 506 | or, to query a multivar: |
| 507 | |
| 508 | ------------ |
| 509 | % git config --get core.gitproxy "for kernel.org$" |
| 510 | ------------ |
| 511 | |
| 512 | If you want to know all the values for a multivar, do: |
| 513 | |
| 514 | ------------ |
| 515 | % git config --get-all core.gitproxy |
| 516 | ------------ |
| 517 | |
Jim Meyering | 544ddb0 | 2008-12-12 10:00:41 +0100 | [diff] [blame] | 518 | If you like to live dangerously, you can replace *all* core.gitproxy by a |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 519 | new one with |
| 520 | |
| 521 | ------------ |
| 522 | % git config --replace-all core.gitproxy ssh |
| 523 | ------------ |
| 524 | |
| 525 | However, if you really only want to replace the line for the default proxy, |
| 526 | i.e. the one without a "for ..." postfix, do something like this: |
| 527 | |
| 528 | ------------ |
| 529 | % git config core.gitproxy ssh '! for ' |
| 530 | ------------ |
| 531 | |
| 532 | To actually match only values with an exclamation mark, you have to |
| 533 | |
| 534 | ------------ |
| 535 | % git config section.key value '[!]' |
| 536 | ------------ |
| 537 | |
| 538 | To add a new proxy, without altering any of the existing ones, use |
| 539 | |
| 540 | ------------ |
Michael Haggerty | d0714cc | 2012-08-18 19:32:10 +0200 | [diff] [blame] | 541 | % git config --add core.gitproxy '"proxy-command" for example.com' |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 542 | ------------ |
| 543 | |
Junio C Hamano | 9ce0352 | 2007-11-27 22:41:05 -0800 | [diff] [blame] | 544 | An example to use customized color from the configuration in your |
| 545 | script: |
| 546 | |
| 547 | ------------ |
| 548 | #!/bin/sh |
| 549 | WS=$(git config --get-color color.diff.whitespace "blue reverse") |
| 550 | RESET=$(git config --get-color "" "reset") |
| 551 | echo "${WS}your whitespace color or blue reverse${RESET}" |
| 552 | ------------ |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 553 | |
Junio C Hamano | d477096 | 2013-07-31 11:14:59 -0700 | [diff] [blame] | 554 | For URLs in `https://weak.example.com`, `http.sslVerify` is set to |
| 555 | false, while it is set to `true` for all others: |
| 556 | |
| 557 | ------------ |
Martin Ågren | ed3bb3d | 2018-09-19 18:38:18 +0200 | [diff] [blame] | 558 | % git config --type=bool --get-urlmatch http.sslverify https://good.example.com |
Junio C Hamano | d477096 | 2013-07-31 11:14:59 -0700 | [diff] [blame] | 559 | true |
Martin Ågren | ed3bb3d | 2018-09-19 18:38:18 +0200 | [diff] [blame] | 560 | % git config --type=bool --get-urlmatch http.sslverify https://weak.example.com |
Junio C Hamano | d477096 | 2013-07-31 11:14:59 -0700 | [diff] [blame] | 561 | false |
| 562 | % git config --get-urlmatch http https://weak.example.com |
Nguyễn Thái Ngọc Duy | da0005b | 2015-03-11 16:32:45 -0400 | [diff] [blame] | 563 | http.cookieFile /tmp/cookie.txt |
Junio C Hamano | d477096 | 2013-07-31 11:14:59 -0700 | [diff] [blame] | 564 | http.sslverify false |
| 565 | ------------ |
| 566 | |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 567 | include::config.txt[] |
| 568 | |
Stefan Beller | bff7df7 | 2018-08-08 12:50:20 -0700 | [diff] [blame] | 569 | BUGS |
| 570 | ---- |
| 571 | When using the deprecated `[section.subsection]` syntax, changing a value |
| 572 | will result in adding a multi-line key instead of a change, if the subsection |
| 573 | is given with at least one uppercase character. For example when the config |
| 574 | looks like |
| 575 | |
| 576 | -------- |
| 577 | [section.subsection] |
| 578 | key = value1 |
| 579 | -------- |
| 580 | |
| 581 | and running `git config section.Subsection.key value2` will result in |
| 582 | |
| 583 | -------- |
| 584 | [section.subsection] |
| 585 | key = value1 |
| 586 | key = value2 |
| 587 | -------- |
| 588 | |
| 589 | |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 590 | GIT |
| 591 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 592 | Part of the linkgit:git[1] suite |