702d865fe6
Exuberant ctags creates an output file called "tags" by default or "TAGS" when it's run in emacs mode. Add those two files to .gitignore so they won't be removed by git clean -df. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
59 lines
443 B
Plaintext
59 lines
443 B
Plaintext
#
|
|
# Kbuild ignores
|
|
#
|
|
.*
|
|
*.o
|
|
*.o.*
|
|
*.a
|
|
*.s
|
|
Kbuild
|
|
Config.in
|
|
|
|
#
|
|
# Never ignore these
|
|
#
|
|
!.gitignore
|
|
|
|
#
|
|
# Normal output
|
|
#
|
|
/busybox
|
|
/busybox_old
|
|
/busybox_unstripped*
|
|
|
|
#
|
|
# Backups / patches
|
|
#
|
|
*~
|
|
*.orig
|
|
*.rej
|
|
/*.patch
|
|
|
|
#
|
|
# debugging stuff
|
|
#
|
|
core
|
|
.gdb_history
|
|
.gdbinit
|
|
|
|
#
|
|
# testing output
|
|
#
|
|
/busybox.links
|
|
/runtest-tempdir-links
|
|
/testsuite/echo-ne
|
|
|
|
#
|
|
# cscope output
|
|
#
|
|
cscope.files
|
|
cscope.in.out
|
|
cscope.out
|
|
cscope.po.out
|
|
|
|
#
|
|
# ctags output
|
|
#
|
|
tags
|
|
TAGS
|