我正在使用Ubuntu 13.10 x64,并且正在开发一个项目,一些开发人员正在使用Windows,我最近将git config更改core.eol为“ lf”,core.autocrlf“ input”和core.safecrlf“ true”。从那时起,当我尝试将文件提交到本地存储库时,出现以下错误:据
fatal: CRLF would be replaced by LF in ......
我了解,如果我将其设置core.eol为“ lf”和core.autocrlf“ input”,git会自动将CRLF转换为LF,但是为什么会出现此错误出来吗 我该如何解决这个问题?
谢谢。

git diff输出中蔓延