You've already forked torvalds-GuitarPedal
mirror of
https://github.com/torvalds/GuitarPedal.git
synced 2026-09-12 01:11:56 +00:00
This adds various 3D formats and things like the generated browser interface files or python cache directories to the gitignore list. The patterns are scoped where a tree-wide wildcard would have caught files that belong in the tree: the 3D formats go in Hardware/Models/.gitignore, because Hardware/symbols/ is full of .step component models that are checked in on purpose, and the html pattern is anchored to the root so WebMIDI/index.html and anything joining it stay addable. Note that you can always explicitly add files with these patterns if required, but they are ignored by default. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
20 lines
322 B
Plaintext
20 lines
322 B
Plaintext
*.o
|
|
*.s
|
|
build/
|
|
|
|
# Test files for audio
|
|
*.wav
|
|
*.bin
|
|
|
|
# Browser interface test files
|
|
/*.html
|
|
|
|
# Python environment leftovers
|
|
__pycache__/
|
|
|
|
# Which board this particular tree is about - one line, per-developer,
|
|
# and deliberately not the same answer for everybody.
|
|
board.local
|
|
WebMIDI/effects.js
|
|
Documentation/MIDI_CC_MAP.md
|