warning: LF will be replaced by CRLF
去掉之前的版本控制
rm -rf .git
git config --gobal core.autocrlf false
这样系统就不会去进行换行符的转换了
重新初始化项目仓库
最后重新执行
git init
git add .
系统即可正常运行!
rm -rf .git
git config --gobal core.autocrlf false
这样系统就不会去进行换行符的转换了
最后重新执行
git init
git add .
系统即可正常运行!