From bc946ba7853e07a36348f3b49a2ae132db4fea7f Mon Sep 17 00:00:00 2001 From: Kathy Reid Date: Tue, 25 Jun 2019 18:14:07 +1000 Subject: [PATCH] Preclude .jpg, .png, .gif being rewritten on git push --- .gitattributes | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 70a9d752e8..4552b845e9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,6 @@ -* text eol=lf \ No newline at end of file +* text eol=lf + +# Denote all files that are truly binary and should not be modified. +*.png binary +*.jpg binary +*.gif binary