git 使用 git add , 报错 warning: LF will be replaced by CRLF in .idea/dataSources/eea70815-99be-4ae6-a95
Posted maxy11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 使用 git add , 报错 warning: LF will be replaced by CRLF in .idea/dataSources/eea70815-99be-4ae6-a95相关的知识,希望对你有一定的参考价值。
git add:添加至暂存区,但并未提交至服务器。git add . 是表示把当前目录下的所有更新添加至暂存区。有时在终端操作这个会提示,只是个提示,可以不用管:
原因:
这是因为文件中换行符的差别导致的。这个提示的意思是说:会把windows格式(CRLF(也就是回车换行))转换成Unix格式(LF),这些是转换文件格式的警告,不影响使用。
git默认支持LF。windows commit代码时git会把CRLF转LF,update代码时LF换CRLF。
解决方法:
注: . 为文件路径名
git rm -r --cached .
git config core.autocrlf false
git add .
git commit -m ‘‘提交内容”
git push
以上是关于git 使用 git add , 报错 warning: LF will be replaced by CRLF in .idea/dataSources/eea70815-99be-4ae6-a95的主要内容,如果未能解决你的问题,请参考以下文章
成功解决: git add . 不生效不报错,commit 报错 “did not match any file(s) known to git”
git 使用 git add , 报错 warning: LF will be replaced by CRLF in .idea/dataSources/eea70815-99be-4ae6-a95