.gitignore 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. *.patch
  32. *.gcno
  33. #
  34. # Top-level generic files
  35. #
  36. /tags
  37. /TAGS
  38. /linux
  39. /vmlinux
  40. /vmlinuz
  41. /System.map
  42. /Module.markers
  43. /Module.symvers
  44. #
  45. # git files that we don't want to ignore even it they are dot-files
  46. #
  47. !.gitignore
  48. !.mailmap
  49. #
  50. # Generated include files
  51. #
  52. include/config
  53. include/linux/version.h
  54. include/generated
  55. # stgit generated dirs
  56. patches-*
  57. # quilt's files
  58. patches
  59. series
  60. # cscope files
  61. cscope.*
  62. ncscope.*
  63. # gnu global files
  64. GPATH
  65. GRTAGS
  66. GSYMS
  67. GTAGS
  68. *.orig
  69. *~
  70. \#*#