From e9a2180d16bf8efef4795ccd25ef81f58f2f184f Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Tue, 27 Oct 2015 22:53:20 +0100 Subject: [PATCH] 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. --- .gitattributes | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..5eee84cce --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +* text=auto eol=lf + +# special files +*.bat text eol=crlf +*.jpeg binary +*.jpg binary +*.png binary