]> git.ipfire.org Git - thirdparty/git.git/commitdiff
git-config.1: --get-all description update
authorJunio C Hamano <gitster@pobox.com>
Mon, 26 Aug 2024 17:31:19 +0000 (10:31 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 26 Aug 2024 18:49:27 +0000 (11:49 -0700)
"git config --get-all foo.bar" shows all values for the foo.bar
variable, but does not give the variable name in each output entry.
Hence it is equivalent to "git config get --all foo.bar", without
"--show-names", in the more modern syntax.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-config.txt

index 65c645d461aa1489a584684fc4981f5b33c9b503..c4c9ed1e98035ed6c08222544b945a218d7e6415 100644 (file)
@@ -309,7 +309,7 @@ recommended to migrate to the new syntax.
        Replaced by `git config get [--value=<pattern>] <name>`.
 
 --get-all <name> [<value-pattern>]::
-       Replaced by `git config get [--value=<pattern>] --all --show-names <name>`.
+       Replaced by `git config get [--value=<pattern>] --all <name>`.
 
 --get-regexp <name-regexp>::
        Replaced by `git config get --all --show-names --regexp <name-regexp>`.