From f9f2afd856e936e57dedf983cce3a22489108c67 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Sun, 18 Aug 2019 14:13:26 -0400 Subject: [PATCH] add .gitattributes to force all line endings to LF - this improves the windows development experience when moving between cygwin, WSL, and native tools - cmd and bat files are left alone (we don't currently have any) --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..314766e91b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +* text=auto eol=lf +*.{cmd,[cC][mM][dD]} text eol=crlf +*.{bat,[bB][aA][tT]} text eol=crlf