Changeset: b49704b45808 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b49704b45808 Added Files: .gitignore Branch: graph0 Log Message:
Copy .gitignore from graph/master diffs (124 lines): diff --git a/.gitignore b/.gitignore new file mode 100644 --- /dev/null +++ b/.gitignore @@ -0,0 +1,119 @@ +# Copy of .hgignore +#syntax: glob + +# This ignore file purposely does not cater for building in situ. We +# recommend that you build in a directory other than the source +# directory. + +# You can add files to the ignore list by creating your private ignore +# file in your .hg directory. Add these two lines to your .hg/hgrc +# file: +# [ui] +# ignore = <absolute path to .hg directory>/hgignore +# and create a file .hg/hgignore that contains your ignore patterns. + +# This file contains patterns of files that get generated by the +# recommended build process plus a few patterns of files that we never +# want in the repository (object files and such). + +# files generated by bootstrap +Makefile.am +Makefile.in +Makefile.msc +aclocal.m4 +acout.in +autom4te.cache +buildtools/conf/compile +buildtools/conf/config.guess +buildtools/conf/config.sub +buildtools/conf/install-sh +buildtools/conf/libtool.m4 +buildtools/conf/ltmain.sh +buildtools/conf/ltoptions.m4 +buildtools/conf/ltsugar.m4 +buildtools/conf/ltversion.m4 +buildtools/conf/lt~obsolete.m4 +buildtools/conf/missing +buildtools/conf/ylwrap +configure +configure.ac +doc.lst +install.lst +monetdb_config.h.in +*.pyc + +# files generated by various editors +*.swp +*~ +\#* +.#* + +# files generated by compilers +lex.yy.c +*.tab.c +*.tab.h +.libs +*.exe +*.exe.manifest +*.la +*.lo +*.o +*.obj +*.lib +# notwithstanding clients/odbc/winsetup/winredist/*.dll: +*.dll +# ruby: +*.gem +# java: +*.jar +java/build +java/target +java/bin +java/src/main/java/nl/cwi/monetdb/jdbc/MonetDriver.java +# python: +dist + +# other files we don't want +TAGS +tags +*.elc +*.pyo +*.rej +*.orig + +# build results on Windows +NT/.monetdb +NT/buildtools +NT/clients +NT/common +NT/gdk +NT/geom +NT/inttypes.h +NT/java +NT/monetdb5 +NT/monetdb_config.h +NT/sql +NT/testing +NT/tools +NT/unistd.h + +# package building on Mac OS X +MacOSX/build +MacOSX/usr + +# Build directory +BUILD + +syntax: regexp +^java/build$ +syntax: regexp +^java/target$ + + +# Eclipse +/.cproject +/.project +/.settings/ +/build +/symbols.xml +/Default/ _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
