mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 18:09:47 +01:00
7b95c7be8d
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 .`.
86 lines
939 B
Plaintext
86 lines
939 B
Plaintext
*.tar.gz
|
|
|
|
*.exe
|
|
src/bitcoin
|
|
src/bitcoind
|
|
src/bitcoin-cli
|
|
src/test/test_bitcoin
|
|
src/qt/test/test_bitcoin-qt
|
|
|
|
Makefile.in
|
|
aclocal.m4
|
|
autom4te.cache/
|
|
config.log
|
|
config.status
|
|
configure
|
|
src/bitcoin-config.h
|
|
src/bitcoin-config.h.in
|
|
src/build-aux/
|
|
src/stamp-h1
|
|
share/setup.nsi
|
|
share/qt/Info.plist
|
|
|
|
src/qt/*.moc
|
|
src/qt/moc_*.cpp
|
|
src/qt/forms/ui_*.h
|
|
|
|
src/qt/test/moc*.cpp
|
|
|
|
.deps
|
|
.dirstamp
|
|
.*.swp
|
|
*.*~*
|
|
*.bak
|
|
*.rej
|
|
*.orig
|
|
*.o
|
|
*.o-*
|
|
*.patch
|
|
.bitcoin
|
|
*.a
|
|
*.pb.cc
|
|
*.pb.h
|
|
|
|
*.log
|
|
*.trs
|
|
*.dmg
|
|
|
|
*.json.h
|
|
*.raw.h
|
|
|
|
# Compilation and Qt preprocessor part
|
|
*.qm
|
|
Makefile
|
|
bitcoin-qt
|
|
Bitcoin-Qt.app
|
|
|
|
# Unit-tests
|
|
Makefile.test
|
|
bitcoin-qt_test
|
|
|
|
# Resources cpp
|
|
qrc_*.cpp
|
|
|
|
# Qt creator
|
|
*.pro.user
|
|
|
|
# Mac specific
|
|
.DS_Store
|
|
build
|
|
|
|
#lcov
|
|
*.gcno
|
|
/*.info
|
|
test_bitcoin.coverage/
|
|
total.coverage/
|
|
coverage_percent.txt
|
|
|
|
#build tests
|
|
linux-coverage-build
|
|
linux-build
|
|
win32-build
|
|
qa/pull-tester/run-bitcoind-for-test.sh
|
|
qa/pull-tester/build-tests.sh
|
|
|
|
!src/leveldb*/Makefile
|