Files
opensbi/.gitignore
T
Michael Ellerman dcb5179b50 gitignore: Ignore python cache directories
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>
2026-06-15 10:25:43 +05:30

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*
*~