I'm setting up My First Git Repo, and on running;
git config --list
I've noticed I've got multiple entries for certain config values;
core.autocrlf=input
[...]
core.autocrlf=false
I'm guessing these values are doubled up because they appear in more than one of the various config files (system, global, file). My question is, which of these values takes precedence? Is the config file read line by line, and the last entry taken as the one used during a commit?