From 026c192ca0c103f927f5b76ec2878266bfbff54a Mon Sep 17 00:00:00 2001 From: Chris B Date: Wed, 20 Oct 2021 20:58:43 -0500 Subject: [PATCH] Adding line ending settings to .gitattributes (#4026) * Adding line ending settings to .gitattributes This should make it so that cmd and bat files are always crlf and sh and config.guess are always lf. * Kicking this file... * Undoing the last change --- .gitattributes | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index f2d70fe53f..ce722024ce 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,5 @@ -* text=auto \ No newline at end of file +* text=auto +*.cmd text eol=crlf +*.bat text eol=crlf +*.sh text eol=lf +*.guess text eol=lf \ No newline at end of file