From 62991e604731467c04cd8c652f027930ac758fc9 Mon Sep 17 00:00:00 2001 From: adridu59 Date: Sun, 15 Sep 2013 23:32:18 +0200 Subject: [PATCH] gitattributes: force LF line endings for all files This avoids default CRLF on msysgit for Windows which can cause trouble. Cf. https://help.github.com/articles/dealing-with-line-endings#text-eollf Commit dad2ccc9b3b27d3f438eeea53b771cc85f6dfa32 followup. Closes #7723. --- .gitattributes | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index 10505d47e6c..70b2a5cd90e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,6 @@ [attr]rust text eol=lf whitespace=tab-in-indent,trailing-space,tabwidth=4 -* text=auto +* text eol=lf *.cpp rust *.h rust *.rs rust @@ -8,6 +8,3 @@ src/rt/msvc/* -whitespace src/rt/vg/* -whitespace src/rt/linenoise/* -whitespace src/rt/jemalloc/**/* -whitespace -src/rt/jemalloc/include/jemalloc/jemalloc.h.in text eol=lf -src/rt/jemalloc/include/jemalloc/jemalloc_defs.h.in text eol=lf -src/rt/jemalloc/include/jemalloc/internal/jemalloc_internal.h.in text eol=lf