.gitignore 711 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. *.dvi
  10. *.elc
  11. *.fn
  12. *.fns
  13. *.html
  14. *.ky
  15. *.kys
  16. *.log
  17. *.pdf
  18. *.pg
  19. *.toc
  20. *.tp
  21. *.vr
  22. *.dvi
  23. *.ps
  24. orgcard_letter.tex
  25. org
  26. org-install.el
  27. org-*.tar.gz
  28. org-*.zip
  29. manual
  30. org_dual_license.texi
  31. ORGWEBPAGE/Changes.txt
  32. # aspell word and replacement lists
  33. .aspell.org.pws
  34. .aspell.org.prepl
  35. # allow tmp and test directories that will not be tracked
  36. test
  37. auto
  38. tmp
  39. TODO
  40. # and collateral damage from Emacs
  41. *~
  42. .DS_Store
  43. *#
  44. .#*
  45. #
  46. # Local variables:
  47. # fill-column: 72
  48. # mode: conf
  49. # End: