问题
在git add时,出现如下警告
$ git add .
warning: LF will be replaced by CRLF in .gitignore.
解决方法一
1.设置git,将core.autocrlf设置为false
$ git config --global core.autocrlf false
2.设置windows也用LF换行。
git config --global core.autocrlf false
设置一个.editorconfig 来保证文件都是 LF 结尾。
除了记事本,其他编辑器都可以正常编辑
解决方法二
设置 core.autocrlf=true。
然后使用 dos2unix 之类的工具将本地 LF 结尾的文件改为 CRLF 结尾;