diff options
author | Frank Lichtenheld <frank@lichtenheld.de> | 2007-06-25 16:03:53 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-06-26 18:19:20 -0700 |
commit | e373bb73889e15452b622df67465b77803876aa6 (patch) | |
tree | 8552d785a6d97a63000393013608629bbd29b9a0 /Documentation/git-config.txt | |
parent | e3ae6bb9aaf030251f1d13c4de3aa220cf282460 (diff) | |
download | git-e373bb73889e15452b622df67465b77803876aa6.tar.gz |
config: Complete documentation of --get-regexp
The asciidoc documentation of the --get-regexp option was
incomplete. Add some missing pieces:
- List the option in SYNOPSIS
- Mention that key names are printed
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-config.txt')
-rw-r--r-- | Documentation/git-config.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/git-config.txt b/Documentation/git-config.txt index 056b14724c..387d7bc841 100644 --- a/Documentation/git-config.txt +++ b/Documentation/git-config.txt @@ -14,6 +14,7 @@ SYNOPSIS 'git-config' [--system | --global] --replace-all name [value [value_regex]] 'git-config' [--system | --global] [type] --get name [value_regex] 'git-config' [--system | --global] [type] --get-all name [value_regex] +'git-config' [--system | --global] [type] --get-regexp name_regex [value_regex] 'git-config' [--system | --global] --unset name [value_regex] 'git-config' [--system | --global] --unset-all name [value_regex] 'git-config' [--system | --global] --rename-section old_name new_name @@ -73,6 +74,7 @@ OPTIONS --get-regexp:: Like --get-all, but interprets the name as a regular expression. + Also outputs the key names. --global:: For writing options: write to global ~/.gitconfig file rather than |