/.gitignore

http://github.com/kyapa/sc02b_initramfs · gitignore · 79 lines · 46 code · 9 blank · 24 comment · 0 complexity · 0dbee9f84d61001784e55180eaecabba MD5 · raw file

  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.dbg
  19. *.mod.c
  20. *.i
  21. *.lst
  22. *.symtypes
  23. *.order
  24. modules.builtin
  25. *.elf
  26. *.bin
  27. *.gz
  28. *.bz2
  29. *.lzma
  30. *.lzo
  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. \#*#