git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BUG 1.7.6.1] `git config --bool --get-regexp' omits separating space... sometimes!
@ 2011-10-10 10:20 Brian Foster
  2011-10-10 12:44 ` Matthieu Moy
  2011-10-10 12:54 ` [PATCH] config: display key_delim for config --bool --get-regexp Matthieu Moy
  0 siblings, 2 replies; 4+ messages in thread
From: Brian Foster @ 2011-10-10 10:20 UTC (permalink / raw)
  To: git mailing list

Hello,

# Script to illustrate the problem:
rm -f Config
cat <<\EOF >Config
[Example]
	Boolean
	Other = yes
EOF
git_Config() { git config --file Config "$@"; }

git version
git_Config        --get-regexp '.*\.Boolean'	#1. ✓ Ok: example.boolean
git_Config --bool --get-regexp '.*\.Boolean'	#2. ✗ NO: example.booleantrue
git_Config        --get-regexp '.*\.Other'	#3. ✓ Ok: example.other yes
git_Config --bool --get-regexp '.*\.Other'	#4. ✓ Ok: example.other true
exit

# Output:
git version 1.7.6.1
example.boolean
example.booleantrue
example.other yes
example.other true

 Case 2 omits the space between the key-name and (generated) value,
 making the output difficult to parse/process.  Without checking,
 I assume --int (and friends) have a similar bug?

cheers!
	-blf-

-- 
Brian FOSTER
Principal MTS, Software
Maxim Integrated Products (Microcontroller BU), formerly Innova Card
Web    : http://www.maxim-ic.com/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-10-10 20:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-10 10:20 [BUG 1.7.6.1] `git config --bool --get-regexp' omits separating space... sometimes! Brian Foster
2011-10-10 12:44 ` Matthieu Moy
2011-10-10 12:54 ` [PATCH] config: display key_delim for config --bool --get-regexp Matthieu Moy
2011-10-10 20:59   ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).