mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-28 22:49:47 +01:00
examples,tests: ignore core dumps via .gitignore
This will ignore files named `core` and `core.*` (except `core.c`, `core.h`, `core.md`, `core.txt`) placed directly in the application folder. This is where `make` is typically called and core dump due to a crashing native application, flashing tool, or GDB would be placed. The pattern is intentionally quite narrow, as there is e.g. a core source folder that should still be monitored.
This commit is contained in:
parent
f59e1c63e9
commit
089d8aba43
6
examples/.gitignore
vendored
Normal file
6
examples/.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*/core
|
||||
/*/core.*
|
||||
!/*/core.c
|
||||
!/*/core.h
|
||||
!/*/core.md
|
||||
!/*/core.txt
|
6
tests/.gitignore
vendored
Normal file
6
tests/.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*/core
|
||||
/*/core.*
|
||||
!/*/core.c
|
||||
!/*/core.h
|
||||
!/*/core.md
|
||||
!/*/core.txt
|
Loading…
Reference in New Issue
Block a user