diff options
author | Keith Bostic <keith.bostic@mongodb.com> | 2016-11-02 22:42:56 -0400 |
---|---|---|
committer | Michael Cahill <michael.cahill@mongodb.com> | 2016-11-03 13:42:56 +1100 |
commit | f25adbfdfbbf694b9ec671c8cb070e5109c87b23 (patch) | |
tree | 9c8122cc817c2bffb953421973d1b02d0ded50f1 | |
parent | be9639cc0d6ad44bdaddfae36f1c90ef2d19c388 (diff) | |
download | mongo-f25adbfdfbbf694b9ec671c8cb070e5109c87b23.tar.gz |
WT-3005 Add top-level .gitignore file. (#3120)
-rw-r--r-- | .gitignore | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..bef47daabf9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,123 @@ +# Editor files +*.swp + +# Build directories +.deps/ +.libs/ + +# Build files +*.dll +*.exe +*.exp +*.la +*.lib +*.lo +*.o +*.obj +*.pdb +*.pyc +.sconf_temp +.sconsign.dblite +.dirstamp +/Makefile.am +/aclocal.m4 +/build_posix/aclocal/libtool.m4 +/build_posix/aclocal/ltoptions.m4 +/build_posix/aclocal/ltsugar.m4 +/build_posix/aclocal/ltversion.m4 +/build_posix/aclocal/lt~obsolete.m4 +/build_posix/config.hin +/build_posix/gnu-support/ +/config.log +/config.status +/configure +/configure.ac +/libtool/ +/stamp-h1 +/wiredtiger.h +/wiredtiger.pc +/wiredtiger_config.h +/wiredtiger_ext.h +/wt +Makefile +Makefile.in +build_posix/config.log +build_posix/config.status +build_posix/libtool +build_posix/stamp-h1 +build_posix/wiredtiger.h +build_posix/wiredtiger.pc +build_posix/wiredtiger_config.h +build_posix/wiredtiger_ext.h +build_posix/wt +tags + +# Documentation +/docs/ +/src/docs/changelog.md +/src/docs/doxygen.log + +# Tests +WT_HOME/ +WT_TEST/ + +# Python +/lang/python/_wiredtiger.so +/lang/python/wiredtiger/__init__.py +/lang/python/wiredtiger/_wiredtiger.pyd +/lang/python/wiredtiger.py +/lang/python/wiredtiger_wrap.c +_wiredtiger.pyd + +# Binaries +**/bench/wtperf/wtperf +**/examples/c/ex_access +**/examples/c/ex_all +**/examples/c/ex_async +**/examples/c/ex_backup +**/examples/c/ex_call_center +**/examples/c/ex_config_parse +**/examples/c/ex_cursor +**/examples/c/ex_data_source +**/examples/c/ex_encrypt +**/examples/c/ex_event_handler +**/examples/c/ex_extending +**/examples/c/ex_extractor +**/examples/c/ex_file_system +**/examples/c/ex_hello +**/examples/c/ex_log +**/examples/c/ex_pack +**/examples/c/ex_process +**/examples/c/ex_schema +**/examples/c/ex_scope +**/examples/c/ex_stat +**/examples/c/ex_sync +**/examples/c/ex_thread +**/test/bloom/t +**/test/checkpoint/t +**/test/csuite/test_wt1965_col_efficiency +**/test/csuite/test_wt2246_col_append +**/test/csuite/test_wt2323_join_visibility +**/test/csuite/test_wt2403_lsm_workload +**/test/csuite/test_wt2447_join_main_table +**/test/csuite/test_wt2535_insert_race +**/test/csuite/test_wt2592_join_schema +**/test/csuite/test_wt2695_checksum +**/test/csuite/test_wt2719_reconfig +**/test/csuite/test_wt2834_join_bloom_fix +**/test/csuite/test_wt2853_perf +**/test/cursor_order/cursor_order +**/test/fops/t +**/test/format/s_dumpcmp +**/test/format/t +**/test/huge/t +**/test/manydbs/t +**/test/packing/intpack-test +**/test/packing/intpack-test2 +**/test/packing/intpack-test3 +**/test/packing/packing-test +**/test/readonly/t +**/test/recovery/random-abort +**/test/recovery/truncated-log +**/test/salvage/t +**/test/thread/t |