From f45f18c37f3ad25a031a448deecd6089aea3bf88 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Wed, 7 Mar 2018 10:05:49 -0500 Subject: [PATCH] Add gitattribute to enforce lf on sh and py files --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000000..d97134096897 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +# Declare files that will always have CRLF line endings on checkout. +*.sh text eol=lf +*.py text eol=lf +Makefile text eol=lf \ No newline at end of file