aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
AgeCommit message (Collapse)Author
2017-12-22[build] .gitignore: add QT Creator artifactsSjors Provoost
2017-11-06[build] .gitignore: add background.tiffSjors Provoost
2017-05-03Use shared config file for functional and util testsJohn Newbery
The functional tests and util tests both require a config file that is generated by ./configure. This commit merges those two config files into a single configuration file that can be shared by both tests. The config from config.ini is put into a Namespace object to maintain the interface with bctest.py. A future commit could change this interface to use a dictionary instead of a namespace.
2017-05-03Use an .ini config file for environment vars in bitcoin-util-test.pyJohn Newbery
2017-03-20Move src/test/bitcoin-util-test.py to test/util/bitcoin-util-test.pyJohn Newbery
2017-02-20[trivial] Add tests_config.ini to .gitignorefanquake
2016-12-20gitignore: Wipe line after java comp tool removalMarcoFalke
2016-12-15Simple fuzzing frameworkPatrick Strateman
2016-12-04remove obsolete run-bitcoind-for-test.shAlex Morcos
2016-09-13gitignore: Remove unused linesMarcoFalke
2016-08-07[qa] Use single cache dir for chainsMarcoFalke
2016-06-13[trivial] Ignore split-debug.shfanquake
2015-10-26Merge pull request #6813Wladimir J. van der Laan
d80e3cb Support gathering of code coverage data for RPC tests (dexX7) e3b5e6c Run extended BitcoinJ tests for coverage based on config (dexX7) 45d4ff0 Add config option to enable extended RPC tests for code coverage (dexX7) 8e3a27b Require Python for RPC tests, when using lcov (dexX7) d425877 Remove coverage and test related files, when cleaning up (dexX7) 4d2a926 Ignore coverage data related and temporary test files (dexX7)
2015-10-23Ignore coverage data related and temporary test filesdexX7
2015-10-23doc: Add developer notes about gitignoreWladimir J. van der Laan
- Add developer notes about `.gitignore.` - Remove qt creator specific files from gitignore, to be consistent.
2015-10-05tests-config.sh is superseded by tests_config.pyPavel Janík
2014-12-20Add libbitcoinconsensus.pc to .gitignoreMichael Ford
2014-11-19build: add libbitcoinconsensus files and hook up the lib buildCory Fields
Credit BlueMatt for libbitcoinsonsensus.h/cpp
2014-10-31tests: replace the old (unused since Travis) tests with new rpc test scriptsCory Fields
2014-10-24Add doc/doxygen to .gitignoreMichael Ford
2014-10-17Add buildenv.py to gitignoreMichael Ford
2014-09-16Create the common location for all m4 autotool build scripts, build-aux/m4.randy-waterhouse
Update .gitignore.
2014-08-19Add "it works" test for bitcoin-txJeff Garzik
2014-08-18Univalue: Do not build JSON escape list at runtimeJeff Garzik
No need to waste startup time building something that can be done at compile time. This also resolves a clang++ warning originally reported in #4714, univalue/univalue_write.cpp:33:12: warning: array subscript is of type 'char escapes['"'] = "\\""; ^~~~ etc.
2014-07-29Add "bitcoin-tx" command line utility and supporting modules.Jeff Garzik
This is a simple utility that provides command line manipulation of a hex-encoded TX. The utility takes a hex string on the command line as input, performs zero or more mutations, and outputs a hex string to standard output. This utility is also an intentional exercise of the "bitcoin library" concept. It is designed to require minimal libraries, and works entirely without need for any RPC or P2P communication. See "bitcoin-tx --help" for command and options summary.
2014-07-04Add libtool generated files to .gitignoreWladimir J. van der Laan
2014-06-25Update .gitignoreDrak
Removing old file ignores so they show up in `git status`
2014-03-22Ignore temporary object filesChris Beams
Prior to this change, `git status` would report untracked files of the following sort if run during a build: ?? src/rpcprotocol.o-e628def3 These files should be explicitly ignored not only because they are a nuisance, but given that they appear and disappear quickly, they may be inadvertently added to the index even if one has been careful to check for untracked files with `git status` prior to a `git add .`.
2014-01-13src/leveldb/Makefile is ignored?harry
remove the "-" in leveldb-* to include src/leveldb/Makefile
2013-11-02.gitignore: Simplify references to the same file in different directoriesJosh Triplett
Unless a .gitignore pattern is anchored, it'll match in any directory, not juts at the top level. Simplify .gitignore accordingly.
2013-10-21Add separate bitcoin-rpc clientWladimir J. van der Laan
This adds an executable `bitcoin-rpc` that only serves as a Bitcoin RPC client. The commit does not remove RPC functionality from the `bitcoind` yet, this functionality should be deprecated but is left for a later version to give users some time to switch.
2013-09-16included-tests: generate binary data from test files for inclusion into test ↵Cory Fields
binaries This change moves test data into the binaries rather than reading them from the disk at runtime. Advantages: - Tests become distributable - Cross-compile friendly. Build on one machine and execute in an arbitrary location on another. - Easier testing for backports. Users can verify that tests pass without having to track down corresponding test data. - More trustworthy test results and easier quality assurance as tests make fewer assumptions about their environment. - Tests could theoretically run at client/daemon startup and exit on failure. Disadvantages: - Required 'hexdump' build-dependency. This is a standard bsd tool that should be usable everywhere. It is likely already installed on all build-machines. - Tests can no longer be fudged after build by altering test-data.
2013-09-05autotools: switch to autotools buildsystemCory Fields
2013-04-26Add Bitcoin-Qt.app to .gitignoreMichael Ford
Saves you from seeing everything in the Bitcoin-Qt.app/Contents/ dir after compiling
2013-02-24Add two unittest-related files to .gitignorePeter Todd
2012-10-20Import LevelDB 1.5, it will be used for the transaction database.Mike Hearn
2012-09-20Update gitignore and Makefiles for build.h move from src/ to src/objGavin Andresen
2012-05-23.gitignore: add test_bitcoinJeff Garzik
2012-05-17Add build directory to .gitignore, so that it's not tracked.R E Broadley
2012-04-10Build identification stringsPieter Wuille
All client version information is moved to version.cpp, which optionally (-DHAVE_BUILD_INFO) includes build.h. build.h is automatically generated on supporting platforms via contrib/genbuild.sh, using git describe. The git export-subst attribute is used to put the commit id statically in version.cpp inside generated archives, and this value is used if no build.h is present. The gitian descriptors are modified to use git archive instead of a copy, to create the src/ directory in the output. This way, src/src/version.cpp will contain the static commit id. To prevent gitian builds from getting the "-dirty" marker in their git-describe generated identifiers, no touching of files or running sed on the makefile is performed anymore. This does not seem to influence determinism.
2011-09-26Output build temp files in build/ instead of current directory.Matt Corallo
2011-09-11Some Mac OS X specific thingsp2k
* Added application icon for Mac OS X * Added instructions for compiling under Mac OS X * Added Portfile for compiling miniupnpc with MacPorts
2011-09-07Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
Conflicts: .gitignore
2011-09-06ignore stuffLuke Dashjr
2011-08-28add russian translation and add unicode compatibility (merges pull request #20)Misbakh-Soloviev Vadim A
2011-06-02Add common temp files to .gitignore.Doug Huff
2011-04-23directory re-organization (keeps the old build system)Jaromil
there is no internal modification of any file in this commit files are moved into directories according to established standards in sourcecode distribution; these directories contain: src - Files that are used in constructing the executable binaries, but are not installed. doc - Files in HTML and text format that document usage, quirks of the implementation, and contributor checklists. locale - Files that contain human language translation of strings used in the program contrib - Files contributed from distributions or other third party implementing scripts and auxiliary programs
2011-02-26Added .gitignore, which prevents 'bitcoin' and 'bitcoind' from showing up in ↵Matt Giuca
git.