From 978d4476cf1956fe91a2a6b3b5d2157005560c33 Mon Sep 17 00:00:00 2001 From: Julien Phalip Date: Wed, 21 Nov 2012 10:19:00 +0100 Subject: [PATCH] Fixed #18920 -- Added `.gitattributes` to normalize line endings in HTML templates and avoid spurious failures in the core test suite on Windows. Many thanks to manfre, Claude Paroz, Karen Tracey, MaxV and Daniel Langer for their advising and testing. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..49cb19117c --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Normalize line endings to avoid spurious failures in the core test suite on Windows. +*html text eol=lf \ No newline at end of file