From: Sylwester Nawrocki Date: Wed, 2 Dec 2020 08:36:29 +0000 (+0100) Subject: gitattributes: Set binary attribute for *.gz and *.png files X-Git-Tag: accepted/tizen/unified/20221108.163909~349 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7fe6a9eca7447e78d49a1705a815488bb130fd1d;p=platform%2Fkernel%2Fu-boot.git gitattributes: Set binary attribute for *.gz and *.png files After commit ("1f35137 Add .gitattributes for line endings") all files have text attribute set and we need such change to ensure content of the *.gz and *.png files remains unmodified. $ git check-attr -a -- *.gz *.png *.gz: binary: set *.gz: diff: unset *.gz: merge: unset *.gz: text: unset *.gz: eol: lf *.png: binary: set *.png: diff: unset *.png: merge: unset *.png: text: unset *.png: eol: lf Change-Id: Ie7b1d48761c01c045bdcdae3b0ac66e64af79326 Signed-off-by: Sylwester Nawrocki --- diff --git a/.gitattributes b/.gitattributes index 1879a2dfb3..d11e80e48d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,5 +2,7 @@ * text eol=lf # Denote all files that are truly binary and should not be modified *.bmp binary +*.gz binary +*.png binary *.ttf binary *.gz binary