.gitignore 611 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. .local.vimrc
  31. .lvimrc
  32. .clang-format
  33. .clang-tidy
  34. .clangd
  35. .cache
  36. compile_commands.json
  37. .gdbinit
  38. .gdb_history
  39. perf.data
  40. perf.data.old
  41. # gnu global files
  42. GPATH
  43. GRTAGS
  44. GTAGS
  45. GSYMS
  46. # ignore core files, but not java/net/protocol/core/
  47. core
  48. !core/
  49. lost+found
  50. # ignore ./contrib/gcc_update output
  51. LAST_UPDATED
  52. REVISION
  53. stamp-*
  54. *.stamp
  55. # ignore in-tree prerequisites
  56. /mpfr*
  57. /mpc*
  58. /gmp*
  59. /isl*