From 99321e79511aa0602cc11515d0113514cd9fd6be Mon Sep 17 00:00:00 2001 From: Matt Heffron Date: Mon, 3 Oct 2022 08:02:30 -0700 Subject: [PATCH] Add .gitattributes so *.TEDIT, *.LCOM, *.DFASL, and *.SKETCH are always treated as binary (and the lowercase versions). (#957) --- .gitattributes | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..3cdbee86 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +# Denote all files that are truly binary and should not be modified. +*.tedit binary +*.lcom binary +*.sketch binary +*.dfasl binary +*.TEDIT binary +*.LCOM binary +*.SKETCH binary +*.DFASL binary