From 7a47c5829351408f71c31a41516baffb68e42a3e Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Tue, 24 Jun 2008 14:30:54 +0000 Subject: [PATCH] Add a .gitignore file This makes it easier to setup new git repositories, and makes it more likely all people have the same ignore rules. Reviewed-by: imsnah --- .gitignore | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..06f5299 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ + +# global ignores +*.py[co] + +# / +/Makefile +/Makefile.in +/TAGS +/aclocal.m4 +/autom4te.cache +/autotools +/config.log +/config.status +/configure +/ganeti +/*.patch +/*.tar.bz2 +/*.tar.gz + +# devel +/devel/clean-cluster +/devel/upload + +# doc +/doc/*.html +/doc/*.in +/doc/*.pdf + +# doc/examples +/doc/examples/ganeti.cron +/doc/examples/ganeti.initd + +# lib +/lib/_autoconf.py + +# man +/man/*.[0-9] +/man/*.in -- 1.7.10.4