From 87c51e7cea380c5cadb50a75743be20d5b50fec1 2017-06-12 18:16:02 From: DarkMorford Date: 2017-06-12 18:16:02 Subject: [PATCH] Start with basic .gitignore and .gitattributes files. --- diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6648fc2 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,14 @@ +# Anything not explicitly listed +* text=auto + +# Code files +*.php text +*.css text +*.js text +*.html text + +# Images +*.png binary +*.jpg binary +*.gif binary +*.psd binary diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/.gitignore