warning: LF will be replaced by CRLF in *** Git 操作过程中的报错

 

输入指令:

 

#提交时转换为LF,检出时转换为CRLF
$ git config --global core.autocrlf true

 

#提交时转换为LF,检出时不转换
$ git config --global core.autocrlf input

 

 

#拒绝提交包含混合换行符的文件

git config --global core.safecrlf true

#允许提交包含混合换行符的文件

git config --global core.safecrlf false

#提交包含混合换行符的文件时给出警告

git config --global core.safecrlf warn


 

你可能感兴趣的:(Utils,Git,DEBUG)