Emily Shaffer <emilyshaffer@xxxxxxxxxx> writes: > One thing I'm not sure about: in the tests, I check whether the config > is set, but not what the boolean value of it is. Is there a better way > to do that? Are you looking for value normalization during both setting and retrieving, i.e. $ git config vari.able 0 ;# or "no" or "off" $ git config --type=bool vari.abble false $ git config vari.able 1 ;# or "yes" or "on" $ git config --type=bool vari.abble true $ git config --type=bool vari.able yes ;# or "1" or "on" $ git config vari.able true