Git中的AutoCRLF与SafeCRLF换行符问题
CR回车 LF换行
Windows/Dos CRLF \r\n
Linux/Unix LF \n
MacOS CR \r
一、AutoCRLF
#提交时转换为LF,检出时转换为CRLF
git config –global core.autocrlf true
#提交时转换为LF,检出时不转换
git config –global core.autocrlf input
#提交检出均不转换
git config –global core.autocrlf false
二[……]