.gitignore 645 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. orgcard_letter.tex
  23. org
  24. org-install.el
  25. org-*.tar.gz
  26. org-*.zip
  27. manual
  28. # aspell word and replacement lists
  29. .aspell.org.pws
  30. .aspell.org.prepl
  31. # allow tmp and test directories that will not be tracked
  32. test
  33. tmp
  34. # and collateral damage from Emacs
  35. *~
  36. .DS_Store
  37. *#
  38. .#*
  39. #
  40. # Local variables:
  41. # fill-column: 72
  42. # mode: conf
  43. # End: