PHPz2017-04-24 09:13:04
可以看看我這篇文章 http://www.feeyar.com/GIT/git-autocrlf-problem.html 簡單來說就是要把git配置裡的autocrlf設為false
ringa_lee2017-04-24 09:13:04
在Windows平台下面就有這個該死的行分隔符的問題,一般推薦
git config --global core.autocrlf false
另外還可以
git config --global core.safecrlf true
保證文件的行分隔符號不會混雜。
然後以防萬一重新git checkout
或者git reset --hard
一下