问题:
warning: in the working copy of , LF will be replaced by CRLF the next time Git touches it warning:
今天上传git时报错,使用Ai;得知;
解决:
将 Git 配置为不自动转换换行符,使用以下命令
我使用该命令就不报错了;
git config --global core.autocrlf false
- 如果你只想对当前项目进行配置,可以省略
--global
选项。
git 的 Windows 客户端基本都会默认设置 core.autocrlf=true
如果你希望 Git 在 Windows 上自动转换 CRLF 到 LF,但不想在提交时转换回 CRLF,你可以设置:
git config --global core.autocrlf true
如果你在 Unix/Linux 系统上工作,希望 Git 保持 LF 换行符不变,设置为:
git config --global core.autocrlf input