From 9d5efebad7e54a05818e65018da179eff72ae291 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Sun, 18 Aug 2019 11:21:43 +0200 Subject: [PATCH] Add a .gitattributes files (#1559) * Create .gitattributes * Update list of 'export-ignore' files in .gitattributes --- .gitattributes | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000000..20db8b630a2f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,17 @@ +* text=auto + +# SVGs are treated as binary by default +*.svg text + +# Don't diff machine generated files +package-lock.json -diff + +# Treat images as binary +*.ico binary +*.png binary + +# Don't export/archive these files +.github export-ignore +.gitpod.yml export-ignore +.travis.yml export-ignore +CNAME export-ignore