From b92f1b9edd9c24b8986198431d7640e1ada665ef Mon Sep 17 00:00:00 2001 From: bl-ue <54780737+bl-ue@users.noreply.github.com> Date: Tue, 12 Jan 2021 08:35:06 -0500 Subject: [PATCH] Add .gitattributes file to normalize line endings This will normalize all line endings of files recognized by Git as text to LF (Unix style). --- .gitattributes | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..eb0e53777 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# This ensures that the line endings in any files added or modified are +# normalized before being committed. On Windows they will automatically +# be checked-out as CRLF, and re-converted to LF before check-in. +# See https://git-scm.com/docs/gitattributes for more information. +* text=auto