mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2026-06-17 16:41:19 +01:00
dcb5179b50
Running ./scripts/Kconfiglib/setconfig.py leaves the tree with untracked
files:
Untracked files:
(use "git add <file>..." to include in what will be committed)
scripts/Kconfiglib/__pycache__/
Add __pycache__ to .gitignore to fix it.
Signed-off-by: Michael Ellerman <mpe@kernel.org>
Reviewed-by: Anup Patel <anup@brainfault.org>
Link: https://lore.kernel.org/r/20260602-fix-gitignore-v1-1-4299e2e40ee4@kernel.org
Signed-off-by: Anup Patel <anup@brainfault.org>
26 lines
313 B
Plaintext
26 lines
313 B
Plaintext
# ignore anything begin with dot
|
|
.*
|
|
|
|
# exceptions we need even begin with dot
|
|
!.clang-format
|
|
!.gitignore
|
|
!.github
|
|
!.editorconfig
|
|
|
|
# Object files
|
|
*.o
|
|
*.a
|
|
*.dep
|
|
|
|
#Build & install directories
|
|
build/
|
|
install/
|
|
|
|
# Python bytecode (e.g. from scripts/Kconfiglib)
|
|
__pycache__
|
|
|
|
# Development friendly files
|
|
tags
|
|
cscope*
|
|
*~
|