From 8064f8a49ebf72e9332c0208e3b5b9d54bf3ec4c Mon Sep 17 00:00:00 2001 From: Leon Richardt Date: Sun, 8 Sep 2019 22:01:12 +0200 Subject: [PATCH] Add .gitattributes file to normalize line endings This should make sure that line endings for text files are converted to LF. Some reading: https://git-scm.com/docs/gitattributes#_effects --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..c76ff0c8c --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Normalize line endings to LF for files that Git detects as text +* text=auto