warning: LF will be replaced by CRLF the next time Git touches it warning

2024-07-08 10:39:41 浏览数 (1)

问题:

warning: in the working copy of , LF will be replaced by CRLF the next time Git touches it warning:

今天上传git时报错,使用Ai;得知;  

解决:

将 Git 配置为不自动转换换行符,使用以下命令

我使用该命令就不报错了;

代码语言:javascript复制
git config --global core.autocrlf false
  • 如果你只想对当前项目进行配置,可以省略 --global 选项。

git 的 Windows 客户端基本都会默认设置 core.autocrlf=true

如果你希望 Git 在 Windows 上自动转换 CRLF 到 LF,但不想在提交时转换回 CRLF,你可以设置:

代码语言:javascript复制
git config --global core.autocrlf true

如果你在 Unix/Linux 系统上工作,希望 Git 保持 LF 换行符不变,设置为: 

代码语言:javascript复制
git config --global core.autocrlf input

0 人点赞