From 13886435643fb277b9c8cc4d4e79b29f33cc3ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Dziewo=C5=84ski?= Date: Thu, 8 Nov 2018 17:23:38 +0100 Subject: [PATCH] Do not diff generated files in resources/dist/ This prevents `git diff` and other tools from trying to generate useless diffs for these minified files. The diff will instead only state that "Binary files a/... and b/... differ". https://git-scm.com/docs/gitattributes#_marking_files_as_binary Change-Id: I4620e8e2f06dc72611037cc6e83127c627585776 --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..c4aed068e4 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +resources/dist/* -diff