.gitignore 577 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. *.diff
  2. *.patch
  3. *.orig
  4. *.rej
  5. *~
  6. .#*
  7. *#
  8. *.flt
  9. *.gmo
  10. *.info
  11. *.la
  12. *.lo
  13. *.o
  14. *.pyc
  15. *.tmp
  16. *.a
  17. .deps
  18. .libs
  19. autom4te.cache
  20. config.cache
  21. config.h
  22. config.intl
  23. config.log
  24. config.status
  25. libtool
  26. POTFILES
  27. *-POTFILES
  28. TAGS
  29. TAGS.sub
  30. cscope.out
  31. .local.vimrc
  32. .lvimrc
  33. .clang-format
  34. .clang-tidy
  35. .clangd
  36. .cache
  37. compile_commands.json
  38. .gdbinit
  39. .gdb_history
  40. perf.data
  41. perf.data.old
  42. # ignore core files, but not java/net/protocol/core/
  43. core
  44. !core/
  45. lost+found
  46. # ignore ./contrib/gcc_update output
  47. LAST_UPDATED
  48. REVISION
  49. stamp-*
  50. *.stamp
  51. # ignore in-tree prerequisites
  52. /mpfr*
  53. /mpc*
  54. /gmp*
  55. /isl*