可能是终端内的换行配置和 IDE 当中的不一致。
比如 PHPStorm 的:
Git 终端使用 git config core.autocrlf 查看是 true 还是 false。
是 true 则会把换行(比如: LF)自动转换为 CRLF。
如果是 false,可以进行如下设置:
$ git config --global core.autocrlf true
Ref:WindowsGit客户端技巧
Link:https://www.cnblogs.com/farwish/p/16542572.html
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/278694.html