Permalink
Browse files

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 .`.
  • Loading branch information...
1 parent 0a3acf2 commit 7b95c7be8ddcaefa4e13d717b9abb9b2a8c6cc21 @cbeams cbeams committed Mar 22, 2014
Showing with 1 addition and 0 deletions.
  1. +1 −0 .gitignore
View
@@ -34,6 +34,7 @@ src/qt/test/moc*.cpp
*.rej
*.orig
*.o
+*.o-*
*.patch
.bitcoin
*.a

0 comments on commit 7b95c7b

Please sign in to comment.