原本错误代码:
warning: LF will be replaced by CRLF in README.md.
The file will have its original line endings in your working directory.
这是因为在 windows 中的换行符是 CRLF,但是Git会在你提交的时候自动将CRLF转换为LF,而在 checkout 时将 LF 转换成 CRLF.
所以执行 git add 时侦测到了换行符的不同,若是不希望在 checkout 的时候转换为CRLF:
$ git config --global core.autocrlf input
预设为 true,并不建议关闭此功能。
- CRLF:ASCII 13, \r\n 进行换行,对于 git 中浪费了更多的字符组成换行
- LF:ASCII 10, \n 仅为换行符号
除此之外,我还在stackoverflow中找到一些回答,你可以作为参考:
https://stackoverflow.com/questions/1967370/git-replacing-lf-with-crlf