I set the end of the FpStorm line to LF, but when I pass github, sometimes I see some of the files appear again with the end of the CRLF line (I work on Windows).
This happens with the same files that I edited, and no one edited them between my commits / clicks to the repository. This is very annoying, and I often need to change the ends of the lines in the same file. What can it be and how to fix it?
I also checked the option "Warn that CRLF line separators will be committed"
EDIT
My local git config:
[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
My global configuration is as follows:
[user] name = * email = * [core] autocrlf = false
My system configuration is as follows:
[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
And my git settings in PhpStorm:

source share