From: Junio C Hamano Date: Wed, 29 Aug 2012 21:50:30 +0000 (-0700) Subject: Merge branch 'mh/maint-config-doc-proxy-command' X-Git-Tag: v1.8.0-rc0~118 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/9a245ac2d38c5895f7c981ce15b19e40d9d0913f?ds=inline;hp=-c Merge branch 'mh/maint-config-doc-proxy-command' * mh/maint-config-doc-proxy-command: git-config doc: unconfuse an example git-config.txt: fix example --- 9a245ac2d38c5895f7c981ce15b19e40d9d0913f diff --combined Documentation/git-config.txt index 2d6ef32a08,b24faa8a13..490868eb23 --- a/Documentation/git-config.txt +++ b/Documentation/git-config.txt @@@ -44,15 -44,11 +44,15 @@@ a "true" or "false" string for bool), o path expansion (see '--path' below). If no type specifier is passed, no checks or transformations are performed on the value. -The file-option can be one of '--system', '--global' or '--file' -which specify where the values will be read from or written to. -The default is to assume the config file of the current repository, -.git/config unless defined otherwise with GIT_DIR and GIT_CONFIG -(see <>). +When reading, the values are read from the system, global and +repository local configuration files by default, and options +'--system', '--global', '--local' and '--file ' can be +used to tell the command to read from only that location (see <>). + +When writing, the new value is written to the repository local +configuration file by default, and options '--system', '--global', +'--file ' can be used to tell the command to write to +that location (you can say '--local' but that is the default). This command will fail (with exit code ret) if: @@@ -97,11 -93,10 +97,11 @@@ OPTION --global:: For writing options: write to global ~/.gitconfig file rather than - the repository .git/config. + the repository .git/config, write to $XDG_CONFIG_HOME/git/config file + if this file exists and the ~/.gitconfig file doesn't. + -For reading options: read only from global ~/.gitconfig rather than -from all available files. +For reading options: read only from global ~/.gitconfig and from +$XDG_CONFIG_HOME/git/config rather than from all available files. + See also <>. @@@ -186,33 -181,22 +186,33 @@@ See also <> Opens an editor to modify the specified config file; either '--system', '--global', or repository (default). +--includes:: +--no-includes:: + Respect `include.*` directives in config files when looking up + values. Defaults to on. + [[FILES]] FILES ----- -If not set explicitly with '--file', there are three files where +If not set explicitly with '--file', there are four files where 'git config' will search for configuration options: $GIT_DIR/config:: - Repository specific configuration file. (The filename is - of course relative to the repository root, not the working - directory.) + Repository specific configuration file. ~/.gitconfig:: User-specific configuration file. Also called "global" configuration file. +$XDG_CONFIG_HOME/git/config:: + Second user-specific configuration file. If $XDG_CONFIG_HOME is not set + or empty, $HOME/.config/git/config will be used. Any single-valued + variable set in this file will be overwritten by whatever is in + ~/.gitconfig. It is a good idea not to create this file if + you sometimes use older versions of Git, as support for this + file was added fairly recently. + $(prefix)/etc/gitconfig:: System-wide configuration file. @@@ -267,7 -251,7 +267,7 @@@ Given a .git/config like this ; Proxy settings [core] - gitproxy="proxy-command" for kernel.org + gitproxy=proxy-command for kernel.org gitproxy=default-proxy ; for all the rest you can set the filemode to true with @@@ -342,7 -326,7 +342,7 @@@ To actually match only values with an e To add a new proxy, without altering any of the existing ones, use ------------ - % git config core.gitproxy '"proxy-command" for example.com' + % git config --add core.gitproxy '"proxy-command" for example.com' ------------ An example to use customized color from the configuration in your