mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
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 .`.
This commit is contained in:
parent
0a3acf260a
commit
7b95c7be8d
1 changed files with 1 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -34,6 +34,7 @@ src/qt/test/moc*.cpp
|
||||||
*.rej
|
*.rej
|
||||||
*.orig
|
*.orig
|
||||||
*.o
|
*.o
|
||||||
|
*.o-*
|
||||||
*.patch
|
*.patch
|
||||||
.bitcoin
|
.bitcoin
|
||||||
*.a
|
*.a
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue