From d44a81f91cc6d1de008e0181a1a641bb7ebf929e Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Fri, 28 Jul 2017 21:14:29 +0200 Subject: [PATCH] Enforce LF line endings for shell scripts (#451) This tells git to check out *.sh files with LF line endings. Otherwise, Cygwin and Windows 10's Bash cannot run them. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..50ca329f --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.sh eol=lf