.gitignore 666 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. # aspell word and replacement lists
  31. .aspell.org.pws
  32. .aspell.org.prepl
  33. # allow tmp and test directories that will not be tracked
  34. test
  35. auto
  36. tmp
  37. TODO
  38. # and collateral damage from Emacs
  39. *~
  40. .DS_Store
  41. *#
  42. .#*
  43. #
  44. # Local variables:
  45. # fill-column: 72
  46. # mode: conf
  47. # End: