diff options
author | Libor Pechacek <lpechacek@suse.cz> | 2012-03-01 11:59:45 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-03-01 08:22:24 -0800 |
commit | e0a4aae865862549c5f2a65016d4d264843e7914 (patch) | |
tree | 1f15e683a4e7a5cbe39725b577afcc104b00e18b /Documentation/git-config.txt | |
parent | b0fa280751a8a3e7cee093a7fdc3656490abf984 (diff) | |
download | git-e0a4aae865862549c5f2a65016d4d264843e7914.tar.gz |
Documentation fixes in git-config
Variable names must start with an alphabetic character, regexp config key
matching has its limits, sentence grammar.
Signed-off-by: Libor Pechacek <lpechacek@suse.cz>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-config.txt')
-rw-r--r-- | Documentation/git-config.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Documentation/git-config.txt b/Documentation/git-config.txt index e7ecf5d803..7617d9eb24 100644 --- a/Documentation/git-config.txt +++ b/Documentation/git-config.txt @@ -85,8 +85,11 @@ OPTIONS is not exactly one. --get-regexp:: - Like --get-all, but interprets the name as a regular expression. - Also outputs the key names. + Like --get-all, but interprets the name as a regular expression and + writes out the key names. Regular expression matching is currently + case-sensitive and done against a canonicalized version of the key + in which section and variable names are lowercased, but subsection + names are not. --global:: For writing options: write to global ~/.gitconfig file rather than |