解决git报错“The file will have its original line endings in your working directory”的

上传:u20760 浏览: 8 推荐: 0 文件:PDF 大小:28.03KB 上传时间:2021-01-31 21:09:13 版权申诉
在执行命令 git commit –all -m ‘说明’ 时报错 “The file will have its original line endings in your working directory” 通过查询后发现出现这个问题主要原因是: 我们从别人github地址上通过git clone下载下来,而又想git push到我们自己的github上,那么就会出现上面提示的错误信息。 此时只需要执行如下代码: git rm -r --cached . git config core.autocrlf false git add . 注意 这里是有 “.”
上传资源
用户评论