Git config files support the following [boolean representations](https://git-scm.com/docs/git-config#git-config-boolean) (case-insensitive): - True: `yes`, `on`, `true`, `1` - False: `no`, `off`, `false`, `0` `settings.as_bool` should parse with the same logic.
Git config files support the following boolean representations (case-insensitive):
yes,on,true,1no,off,false,0settings.as_boolshould parse with the same logic.