问题
在执行git add .的命令的时候警告LF will be replaced by CRLF the next time Git touches it
原因
在windows中的换行符为 CRLF
, 而在linux下的换行符为:LF
使用git来生成工程后,文件中的换行符为LF, 当执行git add .时,系统则提示:LF 将被转换成 CRLF
解决
关闭git的CRLF文章来源:https://www.toymoban.com/news/detail-743475.html
rm -rf .git
git config --global core.autocrlf false
git init
git add .
文章来源地址https://www.toymoban.com/news/detail-743475.html
到了这里,关于LF will be replaced by CRLF the next time Git touches it的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!