summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
...
* SERVER-35243 Rename mongoe to mongoedHenrik Edin2018-05-311-1/+1
|
* SERVER-29725 mongoe applicationHenrik Edin2018-04-181-0/+1
| | | | Embedded MongoDB in a standalone application. To be able to connect with the shell and perform testing on embedded.
* SERVER-23312 Add .mypy_cache to .gitignoreJonathan Abrahams2018-04-121-0/+3
|
* SERVER-18394 Remove smoke.py and unused modules from buildscripts/ directoryJonathan Abrahams2018-03-091-2/+0
|
* SERVER-28540 Have git ignore ninja filesGeert Bosch2017-05-011-0/+4
|
* Cleanup .gitignore and add exclude for VSCode projectsKaloian Manassiev2017-02-141-27/+10
|
* SERVER-24355 clang_format leaves temporary files around after a reformatMark Benvenuto2016-06-081-0/+1
|
* Add XCode workspace artifacts to .gitignoreKaloian Manassiev2015-11-301-0/+3
|
* SERVER-20701 add perf.data.old to .gitignoreMathias Stearn2015-09-301-0/+1
|
* add idea artifacts to gitignoreScott Hernandez2015-07-201-0/+4
|
* add additional eclipse ignoreScott Hernandez2015-06-251-0/+1
|
* SERVER-17919 Add support for emitting a compilation databaseAndrew Morrow2015-04-131-0/+2
|
* Remove mongo-tools now built in go from .gitignoreDan Pasette2014-10-311-11/+0
|
* SERVER-15096 added mongoshim to git ignore. minor cleanup of mongoshimBenety Goh2014-09-221-0/+1
|
* SERVER-9570 SERVER-9572 Default install prefix to subdirectory of selectable ↵Andrew Morrow2014-07-141-3/+0
| | | | | | | | build dir In addition, move the .scons directory to a subdirectory of the build directory. This makes all build artifacts not installed to '#' live under the build directory.
* SERVER-13795 rename test binary to dbtestRandolph Tan2014-05-051-1/+1
| | | | Add dbtest to gitignore
* Revert "add mongoadmin to gitignore"matt dannenberg2014-02-191-1/+0
| | | | This reverts commit 359f4cbfeacd9a952fb785ad469cad06eb6e8fcc.
* add mongoadmin to gitignorematt dannenberg2014-01-291-0/+1
|
* ignore fuse filesEliot Horowitz2014-01-091-0/+1
|
* Only ignore 'tags' in root of treeAndrew Morrow2013-11-041-1/+1
| | | | Otherwise rsync --filter=":- .gitignore" drops .git/refs/tags
* SERVER-10822 - Include generated C++ driver header files folderSridhar Nanjundeswaran2013-09-261-1/+2
| | | | Build directly using heat, candle and light
* SERVER-9956 - Installer changes for enterprise edition for WindowsSridhar Nanjundeswaran2013-09-131-0/+4
| | | | | | | | 1) Changed default install directory 2) C++ driver is now an optional feature that can be installed 3) Enterprise dlls are now installed for enterprise builds Note: Enterprise is only supported for x64 2008R2+ builds
* SERVER-10074 RotatableFileWriter type, introduce logger module.Andy Schwerin2013-07-031-1/+1
|
* SERVER-9775 Remove SpiderMonkeyTad Marshall2013-06-241-4/+0
|
* Add eclipse build artifacts to .gitignoreSpencer T Brody2013-06-171-0/+4
|
* SERVER-6514 Re-add support for building the C++ driver shared libraryAndrew Morrow2013-06-031-0/+1
|
* Add loadgen and docgen to .gitignoreAndrew Morrow2013-03-081-0/+2
|
* Visual Studio -- add src/ipch directory to .gitignoreTad Marshall2013-02-201-0/+1
|
* smoke.py stores last test results as jsonEliot Horowitz2013-01-011-0/+1
|
* Visual Studio -- add Text Search to VS projectsTad Marshall2012-12-251-0/+2
|
* ignore .cache files created by Visual StudioTad Marshall2012-11-281-0/+1
|
* SERVER-7086 Visual Studio -- create V8 source files using js2c.pyTad Marshall2012-11-091-0/+2
| | | | | | Make the location of experimental-libraries.cc and libraries.cc match the location where scons creates them. Run the same Python script that scons uses to create the files.
* SERVER-7600 Fixup V8 includes, adapt Visual Studio projectsTad Marshall2012-11-091-4/+4
| | | | | | | | | Use <v8.h> as include path for includes of "third_party/v8/include/v8.h", adapt Visual Studio project files to include the required path, move includes in mongo/scripting/v8* into style guide order, build Visual Studio output files for V8 in separate directories so that SpiderMonkey and V8 builds can be run at the same time and to prevent link errors, tell .gitignore to ignore these new directories.
* SERVER-7565 SERVER-7126 SERVER-7576 Visual Studio require Python, run Python ↵Tad Marshall2012-11-071-5/+9
| | | | | | | | | | | scripts This commit makes the Visual Studio builds require Python to be installed. Add Pre-Build Events to Visual Studio projects to run the same Python scripts that the scons build runs to create src/mongo/base/error_codes.cpp, src/mongo/base/error_codes.h, src/mongo/db/auth/action_type.h and src/mongo/db/auth/action_type.cpp.
* Ignore the src/mongo/db/modules directory, which should not contain files ↵Andy Schwerin2012-10-231-0/+1
| | | | tracked by git.
* added a file for emrEliot Horowitz2012-05-251-0/+1
|
* add *.class to .gitignoreEliot Horowitz2012-05-141-0/+1
|
* initial commit of emr based build suiteEliot Horowitz2012-05-111-0/+3
|
* Visual Studio build improvementsTad Marshall2012-04-291-0/+2
| | | | | | | | | | | | | | | | | | | | | Several changes to make Visual Studio match scons behavior more closely. Build SpiderMonkey from source in every executable that uses it so there is no dependency on separately downloaded pre-built .lib files. Make debug builds statically link the C runtime so there is no dependency on external C runtime DLLs. This is required for the Visual Studio debug build to work with IAT hooking. Use both the platform and configuration names (e.g. x64 Release) for the output directory structure so that switching between build types doesn't require recompiling everything. Make output directories be relative to the project file instead of the solution file so that projects that are included in more than one solution do not conflict across solutions. Rename db.vcxproj* to mongod.vcxproj* and rename dbgrid.vcxproj* to mongos.vcxproj* to make the files easier to find and associate with their executables. Add solution files mongod.sln and mongos.sln to make it easier to build individual executables. Organize filters to model the directory layout to make it easier to find files, break up the db filter into alphabetical groups, use the same pattern for mongod.exe and test.exe to make it easier to switch between projects without getting lost. Remove some non-existent files from project file lists.
* a couple of more gitignoresEliot Horowitz2012-04-181-0/+2
|
* Have git ignore the "tutorial" binary, like the other example binaries in ↵Andy Schwerin2012-04-041-1/+2
| | | | the root directory.
* SERVER-4989: MR: errors that happen during sharded post processing are ignoredagirbal2012-02-171-0/+1
|
* add old .gitignore things temporarilyEliot Horowitz2012-01-171-0/+12
|
* SCons updates to support variant directories.Andy Schwerin2012-01-171-47/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch is a reorganization of our build files, which brings them slightly closer in line with standard SCons organization. In particular, the SConstruct file sets up the various "build environment" objects, by examining the local system and command line parameters. Then, it delegates to some SConscript files, which describe build rules, like how to compile "mongod" from source. Typically, you would create several SConscript files for a project this large, after breaking the project into logical sub projects, such as "platform abstraction", "data manager", "query optimizer", etc. That will be future work. For now, we only separate out the special rules for executing smoke tests into SConscript.smoke. Pretty much all other build rules are in src/mongo/SConscript. "tools" are placed in site_scons/site_tools. This patch also includes better support for building and tracking dependencies among static libraries ("libdeps" and "MergeLibrary"), and some incumbent, minor restructuring. This patch introduces a "warning" message from SCons about framework.o having two rules that generate it. It is harmless, for now, and will be removed in future work. Future work also includes eliminating use of the SCons "Glob" utility, and restructuring the source code into sensible components.
* filter out new VS configuration's build product directoriesEric Milkie2011-12-281-4/+4
|
* /src/mongo/Eric Milkie2011-12-281-9/+9
|
* Update .gitignore so as not to ignore src/mongo.Andy Schwerin2011-12-271-3/+3
| | | | | | | | CR: eliot http://codereview.10gen.com/7232243/ Still to ignore the two autogenerated files, /src/mongo/shell/mongo.cpp and /src/mongo/shell/mongo-server.cpp.
* bulk move of code to src/ SERVER-4551Eliot Horowitz2011-12-241-4/+4
|
* added */ipch and */*/ipch to .gitignoreTad Marshall2011-12-151-0/+2
| | | | These folders are created by Visual Studio for Intellisense.
* add failfile.smoke to gitignoreMathias Stearn2011-11-291-0/+1
|