Skip to content

Commit

Permalink
Ignore temporary object files
Browse files Browse the repository at this point in the history
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
cbeams committed Mar 22, 2014
1 parent 0a3acf2 commit 7b95c7b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -34,6 +34,7 @@ src/qt/test/moc*.cpp
*.rej
*.orig
*.o
*.o-*
*.patch
.bitcoin
*.a
Expand Down

0 comments on commit 7b95c7b

Please sign in to comment.