diff options
author | Chris Beams <chris@beams.io> | 2014-03-22 13:35:24 +0100 |
---|---|---|
committer | Chris Beams <chris@beams.io> | 2014-03-22 13:41:29 +0100 |
commit | 7b95c7be8ddcaefa4e13d717b9abb9b2a8c6cc21 (patch) | |
tree | e442ae070db2a3d7163b7a619ca609c84a04d14f | |
parent | 0a3acf260a56cb21fa768c7b7a82efa2f1bdcbf6 (diff) |
Ignore temporary object files
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 .`.
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 7615fe3915..85ddf3871f 100644 --- a/.gitignore +++ b/.gitignore @@ -34,6 +34,7 @@ src/qt/test/moc*.cpp *.rej *.orig *.o +*.o-* *.patch .bitcoin *.a |