I have core.autocrlf set to true. I want to change it to false. In Git Bash I ran
git config --global core.autocrlf false
but git config --list
still shows core.autocrlf=true
.
I have retried restarting Git Bash and running in an empty directory, i.e. not a repo but nothing seems to change it. Any ideas?
git config --get --local core.autocrlf
git config --get --global core.autocrlf
– Singgit config --list
? – Marianamariandgit config --list
it will show them all as-is without aggregating them IIRC. So I suspect that you just need to work out which config file your setting is coming from and the precedence of it. – Sing