From 7ee10439328452b72d94e93bf36c777f4ba5ad3f 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 314766e91b..ee07a7a2b6 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