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

问题

在执行git add .的命令的时候警告LF will be replaced by CRLF the next time Git touches it


原因

在windows中的换行符为 CRLF, 而在linux下的换行符为:LF

使用git来生成工程后,文件中的换行符为LF, 当执行git add .时,系统则提示:LF 将被转换成 CRLF


解决

关闭git的CRLF

  1. rm -rf .git
  2. git config --global core.autocrlf false
  3. git init
  4. git add .

LF will be replaced by CRLF the next time Git touches it_第1张图片

你可能感兴趣的:(BUG,git,github)