1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

Add new gitattributes

This commit is contained in:
Dean Herbert 2018-04-11 16:09:09 +09:00
parent 5f020074e0
commit f99503b60c

42
.gitattributes vendored
View File

@ -1,19 +1,23 @@
# This won't normalise line endings, but it will ensure that merge drivers use CRLF # Autodetect text files and ensure that we normalise their
* -text eol=crlf # line endings to lf internally. When checked out they may
# use different line endings.
# Currently in-use binary file extensions * text=auto
*.blend binary
*.bmp binary # Check out with crlf (Windows) line endings
*.dll binary *.sln text eol=crlf
*.exe binary *.csproj text eol=crlf
*.icns binary *.cs text diff=csharp eol=crlf
*.ico binary *.resx text eol=crlf
*.jpg binary *.vsixmanifest text eol=crlf
*.osz2 binary packages.config text eol=crlf
*.pdn binary App.config text eol=crlf
*.psd binary *.bat text eol=crlf
*.PSD binary *.cmd text eol=crlf
*.tga binary *.snippet text eol=crlf
*.ttf binary
*.wav binary # Check out with lf (UNIX) line endings
*.xnb binary *.sh text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
*.md text eol=lf
.travis.yml text eol=lf