From a0462ef502203cb64a3f8d3f50133c2df2cf000a Mon Sep 17 00:00:00 2001 From: Max Risuhin Date: Sun, 16 Jun 2019 17:30:10 +0300 Subject: [PATCH] Allow git to handle line endings automatically with text=auto in .gitattributes (#408) --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..5169395c --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +# Git will handle the files in whatever way it thinks is best. +# Overwrites global core.autocrlf git setting +* text=auto \ No newline at end of file