Git 拉取代码的时候总是自动转换成 CRLF,虽然提交的时候变成 LF 了,但是拉取下来变成 CRLF 令人烦不胜烦。
全局设置
直接使用命令设置
git config --global core.autocrlf input
说明
# 提交时转换为 LF,检出时转换为 CRLF
git config --global core.autocrlf true
# 提交时转换为 LF,检出时不转换
git config --global core.autocrlf input
# 提交检出均不转换
git config --global core.autocrlf false
后记
这篇文章不错可以看看 https://stackoverflow.com/questions/1967370/git-replacing-lf-with-crlf