git 学习
2017-11-12 本文已影响0人
小线亮亮
问题1: LF will be replaced by CRLF in index.html.
解决方案:
$ rm -rf .git // 删除.git
$ git config --global core.autocrlf false //禁用自动转换
然后:
$ git init
$ git add .
问题1: LF will be replaced by CRLF in index.html.
解决方案:
$ rm -rf .git // 删除.git
$ git config --global core.autocrlf false //禁用自动转换
然后:
$ git init
$ git add .