mirror of
https://github.com/eunomia-bpf/bpf-developer-tutorial.git
synced 2026-02-04 02:34:16 +08:00
24 lines
310 B
Plaintext
24 lines
310 B
Plaintext
# Ignore object files and kernel modules
|
|
*.o
|
|
*.ko
|
|
*.mod
|
|
*.mod.c
|
|
*.symvers
|
|
*.order
|
|
|
|
# Ignore temporary and backup files
|
|
*~
|
|
*.bak
|
|
*.tmp
|
|
*.swp
|
|
|
|
# Ignore build directory if generated
|
|
/Module.symvers
|
|
/Modules.markers
|
|
/Module.markers
|
|
/modules.order
|
|
|
|
# Ignore other automatically generated files
|
|
*.cmd
|
|
.tmp_versions/
|