From e0931a266aca29daf18350d794a322c5b2f403b9 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Wed, 5 Jul 2023 09:26:10 +0200 Subject: [PATCH] gitattributes: treat .ppm as binary They are images after all and should thus be treated as blobs. git does not do that by default, probably because they have a text header. Signed-off-by: Christoph Heiss --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d62e3d5 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.ppm binary