From 7773216c72d025c5a8afc45be8c98369e20f990d Mon Sep 17 00:00:00 2001 From: Victor Lin <13424970+victorlin@users.noreply.github.com> Date: Fri, 21 Jun 2024 13:39:45 -0700 Subject: [PATCH] Sync .gitattributes with pathogen-repo-guide This change lets git detect text files. While potentially imperfect, it's better than assuming all files are text. --- .gitattributes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index baf144b6..46610df7 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,3 @@ +# Allow Git to decide if file is text or binary # Always use LF line endings even on Windows. -* text eol=lf +* text=auto eol=lf