aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Add "it works" test for bitcoin-txJeff Garzik2014-08-191-0/+1
|
* Univalue: Do not build JSON escape list at runtimeJeff Garzik2014-08-181-0/+2
| | | | | | | | | | | | 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.
* Add "bitcoin-tx" command line utility and supporting modules.Jeff Garzik2014-07-291-0/+1
| | | | | | | | | | | | | 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.
* Add libtool generated files to .gitignoreWladimir J. van der Laan2014-07-041-0/+7
|
* Update .gitignoreDrak2014-06-251-3/+3
| | | | Removing old file ignores so they show up in `git status`
* Ignore temporary object filesChris Beams2014-03-221-0/+1
| | | | | | | | | | | | 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 .`.
* src/leveldb/Makefile is ignored?harry2014-01-131-1/+1
| | | remove the "-" in leveldb-* to include src/leveldb/Makefile
* .gitignore: Simplify references to the same file in different directoriesJosh Triplett2013-11-021-16/+2
| | | Unless a .gitignore pattern is anchored, it'll match in any directory, not juts at the top level. Simplify .gitignore accordingly.
* Add separate bitcoin-rpc clientWladimir J. van der Laan2013-10-211-0/+1
| | | | | | | | 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.
* included-tests: generate binary data from test files for inclusion into test ↵Cory Fields2013-09-161-0/+3
| | | | | | | | | | | | | | | | | | | | | | 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.
* autotools: switch to autotools buildsystemCory Fields2013-09-051-1/+61
|
* Add Bitcoin-Qt.app to .gitignoreMichael Ford2013-04-261-0/+1
| | | | | Saves you from seeing everything in the Bitcoin-Qt.app/Contents/ dir after compiling
* Add two unittest-related files to .gitignorePeter Todd2013-02-241-0/+4
|
* Import LevelDB 1.5, it will be used for the transaction database.Mike Hearn2012-10-201-4/+10
|
* Update gitignore and Makefiles for build.h move from src/ to src/objGavin Andresen2012-09-201-1/+0
|
* .gitignore: add test_bitcoinJeff Garzik2012-05-231-0/+1
|
* Add build directory to .gitignore, so that it's not tracked.R E Broadley2012-05-171-0/+1
|
* Build identification stringsPieter Wuille2012-04-101-0/+1
| | | | | | | | | | | | | | | | | | 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.
* Output build temp files in build/ instead of current directory.Matt Corallo2011-09-261-3/+0
|
* Some Mac OS X specific thingsp2k2011-09-111-0/+4
| | | | | * Added application icon for Mac OS X * Added instructions for compiling under Mac OS X * Added Portfile for compiling miniupnpc with MacPorts
* Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan2011-09-071-1/+7
|\ | | | | | | | | Conflicts: .gitignore
| * ignore stuffLuke Dashjr2011-09-061-0/+6
| |
* | add russian translation and add unicode compatibility (merges pull request #20)Misbakh-Soloviev Vadim A2011-08-281-0/+9
|/
* Add common temp files to .gitignore.Doug Huff2011-06-021-0/+2
|
* directory re-organization (keeps the old build system)Jaromil2011-04-231-3/+3
| | | | | | | | | | | | | | | | | | | 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
* Added .gitignore, which prevents 'bitcoin' and 'bitcoind' from showing up in ↵Matt Giuca2011-02-261-0/+3
git.