I have git 2.6.2 installed in Windows 7.
I have core.autocrlf
set to False
. I'd like to know where that setting comes from. I have the following weird behavior:
> cd c:\
> git config --global --list | select-string autocrlf
> git config --system --list | select-string autocrlf
fatal: unable to read config file 'C:\Program Files\Git\mingw64/etc/gitconfig': No such file or directory
> git config --list | select-string autocrlf
core.autocrlf=false
core.autocrlf=False
> git config core.autocrlf
False
So I have not set core.autocrlf
in the global config. I have no system config. I am currently not in a git directory. Still, I get no less than two core.autocrlf
settings.
Are they generated by the Git binary? (if so, why two settings?)