mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 07:21:22 +01:00

Ignore temporary files, and avoid accidentally adding them to a commit. Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> Reviewed-by: Anup Patel <anup@brainfault.org>
23 lines
251 B
Plaintext
23 lines
251 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/
|
|
|
|
# Development friendly files
|
|
tags
|
|
cscope*
|
|
*~
|