From 283b725eb7db15cecd596e47949ab4e50d99d6bc Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 11 Dec 2019 17:30:47 +0100 Subject: [PATCH] PNG files explicitly marked as binary (resolves #39) --- .gitattributes | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitattributes b/.gitattributes index 314766e9..a802e460 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,16 @@ +# Set the default behavior * text=auto eol=lf *.{cmd,[cC][mM][dD]} text eol=crlf *.{bat,[bB][aA][tT]} text eol=crlf + +# Explicitly declare text files to always be normalized and converted to native line endings on checkout +*.cpp text +*.h text +*.py text +*.txt text +*.md text +*.yml text + +# Denote all files that are truly binary and should not be modified +*.png binary +*.jpg binary