各位帮忙看看是怎么回事啊,使用的是msysgit那个客户端,我用ide也是如此。
小伙看你根骨奇佳,潜力无限,来学PHP伐。
You can read my blog post http://www.feeyar.com/GIT/git-autocrlf-problem.html To put it simply, you need to set autocrlf in the git configuration to false
There is this damn line separator problem under the Windows platform. It is generally recommended
git config --global core.autocrlf false
Also
git config --global core.safecrlf true
Guarantee that the file's line delimiters are not mixed. Then re-git checkout或者git reset --hardjust in case
git checkout
git reset --hard
You can read my blog post http://www.feeyar.com/GIT/git-autocrlf-problem.html To put it simply, you need to set autocrlf in the git configuration to false
There is this damn line separator problem under the Windows platform. It is generally recommended
Also
Guarantee that the file's line delimiters are not mixed. Then re-
git checkout
或者git reset --hard
just in case