From a43bccfc3ce4818e27d42b756fd671ed6326e8be Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Wed, 19 May 2021 22:41:15 -0700 Subject: [PATCH] Meta: Mark the other image file formats as binary in .gitattributes We had rules for .png and .jpg files, but we have not maintained the list as support for other file formats has been added. To test these changes test files have been committed for each of these formats. This change updates the list with all of the binary image file types I was able to find in the tree at the time of writing. --- .gitattributes | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 84a67e5741..07cff8b95e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,5 +2,11 @@ * text=auto eol=lf # Denote all files that are truly binary and should not be modified. -*.png binary +*.bmp binary +*.dds binary +*.gif binary *.jpg binary +*.pbm binary +*.pgm binary +*.png binary +*.ppm binary