From 2ebde81733cc84d73fc3bcf497e3456bf1f005a9 Mon Sep 17 00:00:00 2001 From: freghar Date: Mon, 4 May 2009 22:30:24 +0200 Subject: [PATCH] [7764] Top-level .gitignore cleanup Signed-off-by: freghar --- .gitignore | 75 ++++++++++++++++++++++------------------ doc/.gitignore | 14 ++++++++ src/shared/revision_nr.h | 2 +- 3 files changed, 56 insertions(+), 35 deletions(-) create mode 100644 doc/.gitignore diff --git a/.gitignore b/.gitignore index 67c91d263..d785f4fc6 100644 --- a/.gitignore +++ b/.gitignore @@ -9,59 +9,66 @@ # # Normal rules # +.* +*.o +*.o.* +*.a +*.so +*.so.dbg +*.bin +*.gz -compile -FILES -INSTALL - +# +# Top-level generic files +# tags TAGS +INSTALL +!.gitignore -*.pyc -*.[oa] -*.lo -*.loT -*.la -*.laT -*.so -*.bak -*.dist -.deps -.libs -*~ -.*.swp -Makefile.in -Makefile - -core -core.* -!core.h -vgcore* - -doc/html -doc/Doxyfile -doc/doxygen.log - +# +# Build generated files +# aclocal.m4 autom4te.cache +compile config.guess config.h.in +config.log +config.status config.sub configure depcomp +libtool install-sh ltmain.sh missing -config.log -config.status -libtool stamp-h1 +Makefile.in +Makefile + +# +# Editors / debuggers / other output files +# +*~ +*.bak +*.orig +*.patch callgrind.out.* # +# Git stuff # -# MaNGOS generated files -# +# stgit directories +patches-* +# +# VS binaries output +# bin/* + +# +# Special exceptions +# +!dep/ACE_wrappers/ace/ace_message_table.bin diff --git a/doc/.gitignore b/doc/.gitignore new file mode 100644 index 000000000..e0462fcee --- /dev/null +++ b/doc/.gitignore @@ -0,0 +1,14 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# Doxygen generic files +# +html +Doxyfile +doxygen.log diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index b950557c1..c4de807d9 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7763" + #define REVISION_NR "7764" #endif // __REVISION_NR_H__