.gitignore 848 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. # texi2pdf --tidy
  45. doc/*.t2d
  46. # aspell word and replacement lists
  47. .aspell.org.pws
  48. .aspell.org.prepl
  49. # allow tmp and test directories that will not be tracked
  50. test
  51. t
  52. auto
  53. tmp
  54. TODO
  55. # and collateral damage from Emacs
  56. *~
  57. .DS_Store
  58. *#
  59. .#*
  60. #
  61. # Local variables:
  62. # End: