From 0483bc8153e7bb467fc790fd1b91629e719cd823 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Wed, 28 Aug 2019 11:01:35 -0400 Subject: [PATCH] gitattributes *.bin, *.pdf, and *.png are binary * fixes #12818 --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index 314766e91bf5..ee07a7a2b6e2 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,7 @@ * text=auto eol=lf *.{cmd,[cC][mM][dD]} text eol=crlf *.{bat,[bB][aA][tT]} text eol=crlf + +*.bin binary +*.pdf binary +*.png binary