Git 自动转换行格式

替换SDK时,经常会发现大量文件都有变化,但比较两个版本变化的内容,是没有任何区别的
是因为 git 在上传时,会把 windows 里的换行换成 unix 的换行,即 \r\n 替换成 \n

需要修改 git 的设置,避免自动替换
https://davemateer.com/2020/01/09/Line-endings-ignore-in-Git

# Change to not perform any conversions
git config --global core.autocrlf false

你可能感兴趣的:(Git 自动转换行格式)