From b0c3e3ff9c21c80daeb6d2d240195fa4b715367d Mon Sep 17 00:00:00 2001 From: nori li <50680474+thenorili@users.noreply.github.com> Date: Thu, 25 Apr 2024 14:24:21 -0700 Subject: [PATCH] Add a gitattributes file to specify LF line endings (#126) Since almost all files not on our gitignore are text files, it uses `* text` as a catch-all and specifies *.png as binary. Co-authored-by: Jane Losare-Lusby --- .gitattributes | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d17ae0c --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +text eol=lf + +* text + +*.png binary