From 763b770e7bf3e3d7be927611584e50dffb826be1 Mon Sep 17 00:00:00 2001 From: Alexander Kanevskiy Date: Wed, 9 Oct 2013 17:00:16 +0300 Subject: [PATCH] add default ignores --- .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b416035 --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# Ignore hidden files +.* +!.gitignore + +# Python +*.py[cod] + +# vim +*.s[a-w][a-z] +*.un~ +Session.vim +.netrwhist +*~ + +# Ignore exports +*.xls +*.json +*.csv + +# It's better to unpack these files and commit the raw source because +# git has its own built in compression methods. +*.7z +*.jar +*.rar +*.zip +*.gz +*.bzip +*.bz2 +*.xz +*.lzma + +#packing-only formats +*.iso +*.tar + +#package management formats +*.dmg +*.xpi +*.gem +*.egg +*.deb +*.rpm -- 2.7.4