本文主要是介绍【Git】warning: LF will be replaced by CRLF in test.txt.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
$ git add test.txt
warning: LF will be replaced by CRLF in test.txt.
The file will have its original line endings in your working directory.
LF(换行,Line Feed)将会被CRLF(回车换行,CarriageReturn)替代。
该文件将在您的工作目录中具有其原始行结尾 。
报这个警告时是由于文件夹远程不存在,但是不影响提交
解决办法:
1)本地文件处理
$ rm -rf .git // 删除.git $ git config --global core.autocrlf false //禁用自动转换
2)重新执行操作:
$ git init //初始化Git $ git add 文件名 //暂存文件test
这篇关于【Git】warning: LF will be replaced by CRLF in test.txt.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!