From 7b95c7be8ddcaefa4e13d717b9abb9b2a8c6cc21 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Sat, 22 Mar 2014 13:35:24 +0100 Subject: [PATCH] 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 .`. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7615fe3915a22..85ddf3871f252 100644 --- a/.gitignore +++ b/.gitignore @@ -34,6 +34,7 @@ src/qt/test/moc*.cpp *.rej *.orig *.o +*.o-* *.patch .bitcoin *.a