From f4b26fef2a7625cc49915d8f4b620d3365a9feb6 Mon Sep 17 00:00:00 2001 From: Vadim Petrochenkov Date: Fri, 2 Oct 2020 21:35:11 +0300 Subject: [PATCH] Checkout files with LF line endings Running test suite will reset line endings to LF, so it they are checked out as CRLF it'll mark the files as dirty. --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..40e9d89 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +# Running test suite will update test expectations to use LF line endings, +# so they need to be checked out using LF as well. +* text=auto eol=lf