.gitignore 966 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #
  2. # NOTE! Don't add files that are generated in specific
  3. # subdirectories here. Add them in the ".gitignore" file
  4. # in that subdirectory instead.
  5. #
  6. # NOTE! Please use 'git ls-files -i --exclude-standard'
  7. # command after changing this file, to see if there are
  8. # any tracked files which get ignored after the change.
  9. #
  10. # Normal rules
  11. #
  12. .*
  13. *.o
  14. *.o.*
  15. *.a
  16. *.s
  17. *.ko
  18. *.so
  19. *.so.dbg
  20. *.mod.c
  21. *.i
  22. *.lst
  23. *.symtypes
  24. *.order
  25. modules.builtin
  26. *.elf
  27. *.bin
  28. *.gz
  29. *.bz2
  30. *.lzma
  31. *.xz
  32. *.lzo
  33. *.patch
  34. *.gcno
  35. #
  36. # Top-level generic files
  37. #
  38. /tags
  39. /TAGS
  40. /linux
  41. /vmlinux
  42. /vmlinuz
  43. /System.map
  44. /Module.markers
  45. /Module.symvers
  46. #
  47. # git files that we don't want to ignore even it they are dot-files
  48. #
  49. !.gitignore
  50. !.mailmap
  51. #
  52. # Generated include files
  53. #
  54. include/config
  55. include/linux/version.h
  56. include/generated
  57. arch/*/include/generated
  58. # stgit generated dirs
  59. patches-*
  60. # quilt's files
  61. patches
  62. series
  63. # cscope files
  64. cscope.*
  65. ncscope.*
  66. # gnu global files
  67. GPATH
  68. GRTAGS
  69. GSYMS
  70. GTAGS
  71. *.orig
  72. *~
  73. \#*#