12345678910111213141516171819202122232425262728293031323334353637 |
- #
- # Never ignore these
- #
- !.gitignore
- #
- # Generated files
- #
- *.os
- *.oS
- *.a
- *.i
- *.o
- *.depend
- lib/
- install_dir/
- .config*
- .*.dep
- /*.log
- cscope.*
- #
- # Debugging files
- #
- .gdb_history
- .gdbinit
- core
- *.c.[0-9][0-9][0-9]t.*
- #
- # Backups / patches
- #
- *~
- *.orig
- *.rej
- /*.patch
- /*.diff
|