From 8708d8da49d68057ee8f32e64415c7109d237bd7 Mon Sep 17 00:00:00 2001 From: Lauri Nurmi Date: Sun, 31 Jan 2016 20:49:59 +0200 Subject: [PATCH] Add .gitattributes to ensure all shell scripts have LF as eol-style. Some Git clients on Windows may use CRLF otherwise, which effectively prevents running such scripts. --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..e1ae7d9d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +# On Windows, some Git clients may normalize all text files' line-endings to +# CRLF, which causes obscure errors when running shell scripts. +*.sh eol=lf