我已经将我的PhpStorm行结尾设置为LF但是当我提交github时,有时我会看到一些文件再次显示CRLF行结束(我在Windows上工作)。
它发生在我编辑的相同文件中,没有人在我的提交/推送到存储库之间编辑它们。这非常烦人,我需要经常将行结尾更改为同一个文件。它可能是什么以及如何解决它?
我还检查了选项“如果要提交CRLF行分隔符,则发出警告”
修改
我的本地git配置是这样的:
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
hideDotFiles = dotGitOnly
[remote "origin"]
url = https://github.com/*
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "develop"]
remote = origin
merge = refs/heads/develop
我的全局配置是:
[user]
name = *
email = *
[core]
autocrlf = false
我的系统范围配置是:
[core]
symlinks = false
autocrlf = false
[color]
diff = auto
status = auto
branch = auto
interactive = true
[pack]
packSizeLimit = 2g
[help]
format = html
[http]
sslCAinfo = /bin/curl-ca-bundle.crt
[sendemail]
smtpserver = /bin/msmtp.exe
[diff "astextplain"]
textconv = astextplain
[rebase]
autosquash = true
我在PhpStorm中的GIT设置:
答案 0 :(得分:8)
您可以检查此Git设置是否有帮助:
git config --global core.autocrlf false
我通常建议keeping core.autocrlf
to false(有only a few reason to set it to true)。
同时检查您是否有任何带有.gitattributes
指令的core.eol
个文件。
答案 1 :(得分:5)
经过测试,显然不是PhpStorm问题,而是GIT配置问题。
似乎在Windows上需要设置:
git config --global core.autocrlf input
但也
git config --global core.eol lf
让它发挥作用。
答案 2 :(得分:1)
git config --global core.autocrlf input
将仅为所有git项目确保LF。