summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-08-25 20:55:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-08-25 20:55:07 (GMT)
commita8998453bebd7a4d620c78773917f1189ff4e672 (patch)
tree647104f1fc22b2bc9b9df6877cf152a2e86792d9 /Documentation
parent13e11ff707b18599dc94c25885b33b0c514b1c17 (diff)
parentae1f7094f7a68fcff3d07358d83f5f483f0c300c (diff)
downloadgit-a8998453bebd7a4d620c78773917f1189ff4e672.zip
git-a8998453bebd7a4d620c78773917f1189ff4e672.tar.gz
git-a8998453bebd7a4d620c78773917f1189ff4e672.tar.bz2
Merge branch 'dg/document-git-c-in-git-config-doc'
The "git -c var[=val] cmd" facility to append a configuration variable definition at the end of the search order was described in git(1) manual page, but not in git-config(1), which was more likely place for people to look for when they ask "can I make a one-shot override, and if so how?" * dg/document-git-c-in-git-config-doc: doc: mention `git -c` in git-config(1)
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-config.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/git-config.txt b/Documentation/git-config.txt
index f163113..83f86b9 100644
--- a/Documentation/git-config.txt
+++ b/Documentation/git-config.txt
@@ -263,6 +263,9 @@ The files are read in the order given above, with last value found taking
precedence over values read earlier. When multiple values are taken then all
values of a key from all files will be used.
+You may override individual configuration parameters when running any git
+command by using the `-c` option. See linkgit:git[1] for details.
+
All writing options will per default write to the repository specific
configuration file. Note that this also affects options like `--replace-all`
and `--unset`. *'git config' will only ever change one file at a time*.