我在 Windows 7 中安装了 git 2.6.2。
我将 core.autocrlf
设置为 False
。我想知道那个设置是从哪里来的。我有以下奇怪的行为:
> 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
所以我没有在全局配置中设置
core.autocrlf
。我没有系统配置。我目前不在 git 目录中。不过,我得到不少于两个 core.autocrlf
设置。它们是由 Git 二进制文件生成的吗? (如果是这样,为什么有两个设置?)
最佳答案
查看 C:\ProgramData\Git\config。
有关更多详细信息,请参阅 this question (不仅仅是 core.autocrlf 具有“幻影”值,还有更多 :) )
关于windows - windows 中 core.autocrlf 在哪里设置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33285000/