mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 00:09:46 +01:00
089d8aba43
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.
7 lines
65 B
Plaintext
7 lines
65 B
Plaintext
/*/core
|
|
/*/core.*
|
|
!/*/core.c
|
|
!/*/core.h
|
|
!/*/core.md
|
|
!/*/core.txt
|