.gitignore 858 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Don't bother tracking a bunch of stuff when building and installing
  2. # Org from the master git repository.
  3. # ...by ignoring everything created by 'make', 'make doc', `make info'
  4. # `make html_manual', `make release'
  5. *.aux
  6. *.bak
  7. *.cp
  8. *.cps
  9. *.diff
  10. *.dvi
  11. *.elc
  12. *.fn
  13. *.fns
  14. *.html
  15. *.info
  16. *.ky
  17. *.kys
  18. *.log
  19. *.patch
  20. *.pdf
  21. *.pg
  22. *.pgs
  23. *.ps
  24. *.toc
  25. *.tp
  26. *.vr
  27. *.vrs
  28. orgcard_letter.tex
  29. orgcard.txt
  30. org
  31. org-loaddefs.el
  32. org-version.el
  33. doc/org-version.inc
  34. org-*.tar*
  35. orgplus-*.tar*
  36. org-*.zip
  37. version.mk
  38. manual
  39. org_dual_license.texi
  40. ORGWEBPAGE/Changes.txt
  41. local*.mk
  42. .gitattributes
  43. mk/x11idle
  44. ChangeLog
  45. # texi2pdf --tidy
  46. doc/*.t2d
  47. # aspell word and replacement lists
  48. .aspell.org.pws
  49. .aspell.org.prepl
  50. # allow tmp and test directories that will not be tracked
  51. test
  52. t
  53. auto
  54. tmp
  55. TODO
  56. # and collateral damage from Emacs
  57. *~
  58. .DS_Store
  59. *#
  60. .#*
  61. #
  62. # Local variables:
  63. # End: