Add gitattributes file to mark bat file as CRLF

Gitattributes files can be used to mark files as crlf, which is useful for the `.bat` files in case people use eol=lf in their git config.
This commit is contained in:
Thom Wiggers 2015-10-27 22:53:20 +01:00
parent e9fcaea4bc
commit e9a2180d16

7
.gitattributes vendored Normal file
View file

@ -0,0 +1,7 @@
* text=auto eol=lf
# special files
*.bat text eol=crlf
*.jpeg binary
*.jpg binary
*.png binary