在安装过程中,我们在 Windows 上检查了“按原样签出,按原样提交”而不是“按原样签出,按原样提交”。
它没有在全局配置中更新。
请检查以下输出一次。
$ git config --list | grep crlf
core.autocrlf=true
以下命令没有输出,表示未在这些文件中配置。
git config --list --global | grep crlf
git config --list --system | grep crlf
请建议在哪里更新。
--local
也没有输出。
答案1
您可以使用以下方式查看特定 git 配置值的设置位置--show-origin
选项:
git config --list --show-origin | grep crlf