I have set a couple global configs in git:
git config --global core.autocrlf true
git config --global core.filemode false
These show up in my ~/.gitconfig
file:
[core]
editor = vim
autocrlf = true
fileMode = false
however, my repositories continue to check filemodes and continue to commit Windows line endings. I have to execute the git config
command within each repository or the configs don't get loaded.
What's happening?