.gitignore 660 B

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