config: Change output of --get-regexp for valueless keys
Print no space after the name of a key without value. Otherwise keys without values are printed exactly the same as keys with empty values. Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
e373bb7388
commit
b69ba460bb
@ -283,6 +283,12 @@ EOF
|
||||
test_expect_success 'get variable with no value' \
|
||||
'git-config --get novalue.variable ^$'
|
||||
|
||||
echo novalue.variable > expect
|
||||
|
||||
test_expect_success 'get-regexp variable with no value' \
|
||||
'git-config --get-regexp novalue > output &&
|
||||
cmp output expect'
|
||||
|
||||
git-config > output 2>&1
|
||||
|
||||
test_expect_success 'no arguments, but no crash' \
|
||||
|
Reference in New Issue
Block a user