Force cpp files to be LF line endings (#6319)

Just marking a file as text will cause git to override the local core.autocrlf setting, and assume you want it to be true, which isn't what you want.
This commit is contained in:
Thad House
2024-01-26 23:20:51 -08:00
committed by GitHub
parent 84ef71ace0
commit bbb230491a

6
.gitattributes vendored
View File

@@ -1,7 +1,7 @@
*.cpp text
*.cpp text eol=lf
*.gradle text eol=lf
*.h text
*.inc text
*.h text eol=lf
*.inc text eol=lf
*.java text eol=lf
*.json text eol=lf
*.md text eol=lf