From 66f87062f378f3365df57dc415b6fc81c7b31675 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Tue, 5 Nov 2019 11:46:04 +0800 Subject: [PATCH] apps: designate compiled js/css files as binary The 'index.js', 'tile.js', and 'index.css' files included in several Arvo apps are compiled, minified JS or CSS. While they are technically text, they are not usefully diffable. This commit designates such files as 'binary' in .gitattributes, which prevents git from attempting to create diffs for them in 'git log' and 'git show'. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitattributes b/.gitattributes index e48553053..6aa02bc32 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,4 @@ bin/* filter=lfs diff=lfs merge=lfs -text bin/*/* filter=lfs diff=lfs merge=lfs -text +pkg/arvo/**/*.js binary +pkg/arvo/**/*.css binary