mirror of
https://github.com/github/gitignore.git
synced 2026-08-25 17:32:47 +02:00
feat: add Zephyr RTOS .gitignore template
Add gitignore template for Zephyr RTOS projects covering: - Build artifacts and twister output - Generated config/devicetree files - West workspace metadata - Python virtual environments
This commit is contained in:
parent
ca6c873762
commit
7d476866ad
27
community/Embedded/ZephyrRTOS.gitignore
Normal file
27
community/Embedded/ZephyrRTOS.gitignore
Normal file
@ -0,0 +1,27 @@
|
||||
# Zephyr RTOS build artifacts
|
||||
/build/
|
||||
/twister-out*/
|
||||
|
||||
# Generated configuration files
|
||||
*.config
|
||||
*.config.old
|
||||
/zephyr/.config
|
||||
|
||||
# Device tree generated files
|
||||
*.dts.pre.tmp
|
||||
*.dts_compiled
|
||||
|
||||
# Kconfig generated
|
||||
autoconf.h
|
||||
|
||||
# West workspace
|
||||
/.west/
|
||||
|
||||
# Python virtual environment
|
||||
/.venv/
|
||||
/venv/
|
||||
|
||||
# IDE
|
||||
.vscode/launch.json
|
||||
.vscode/tasks.json
|
||||
*.jlink
|
||||
Loading…
Reference in New Issue
Block a user