From d2579ebfa41261461d4799d1eddad442ec16d504 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Fri, 28 Jul 2017 20:52:03 +0200 Subject: [PATCH] Enforce LF line endings for shell scripts 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