只是在window

  1. 以下任选其一
  2. 关闭自动转换(当前仓库)
  3. git config core.autocrlf false
  4. 关闭自动转换(全局仓库)
  5. git config --global core.autocrlf false

其他

  1. #提交时验证
  2. # 拒绝提交包含混合换行符的文件
  3. git config --global core.safecrlf true
  4. # 允许提交包含混合换行符的文件
  5. git config --global core.safecrlf false
  6. # 提交包含混合换行符的文件时给出警告
  7. git config --global core.safecrlf warn
  8. #下拉提交时操作
  9. # 提交时转换为LF,检出时转换为CRLF
  10. git config --global core.autocrlf true
  11. # 提交时转换为LF,检出时不转换
  12. git config --global core.autocrlf input
  13. # 提交检出均不转换
  14. git config --global core.autocrlf false