mirror of
https://github.com/godotengine/godot
synced 2024-11-02 14:03:02 +00:00
900d90bb61
text=auto works well in Git 2.10+ but it's broken in previous versions, which are still used in production on e.g. Ubuntu 16.04 LTS. Also fix a couple missed text files with CRLF terminators. .bat files likely require it to be processed properly on Windows, but core.autocrlf should take care of converting them on the fly when checking out on Windows.
15 lines
407 B
Text
15 lines
407 B
Text
# Properly detect languages on Github
|
|
*.h linguist-language=cpp
|
|
*.inc linguist-language=cpp
|
|
thirdparty/* linguist-vendored
|
|
|
|
# Normalize EOL for all files that Git considers text files
|
|
* text=auto eol=lf
|
|
|
|
# The above only works properly for Git 2.10+, so for older versions
|
|
# we need to manually list the binary files we don't want modified.
|
|
*.icns binary
|
|
*.ico binary
|
|
*.jar binary
|
|
*.png binary
|
|
*.ttf binary
|