From 4a76eed6e2cf851ede8a80a997f21a6b3f367f39 Mon Sep 17 00:00:00 2001 From: nori li <50680474+thenorili@users.noreply.github.com> Date: Fri, 24 Nov 2023 21:55:19 -0800 Subject: [PATCH] Add a gitattributes file to specify auto CRLF for all files Since almost all files not on our gitignore are text files, it uses `* text` as a catch-all and specifies *.png as binary. --- .gitattributes | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a25597d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +text=auto + +* text + +*.png binary