.gitignore 717 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. *.vrs
  23. *.dvi
  24. *.ps
  25. orgcard_letter.tex
  26. org
  27. org-install.el
  28. org-*.tar.gz
  29. org-*.zip
  30. manual
  31. org_dual_license.texi
  32. ORGWEBPAGE/Changes.txt
  33. # aspell word and replacement lists
  34. .aspell.org.pws
  35. .aspell.org.prepl
  36. # allow tmp and test directories that will not be tracked
  37. test
  38. auto
  39. tmp
  40. TODO
  41. # and collateral damage from Emacs
  42. *~
  43. .DS_Store
  44. *#
  45. .#*
  46. #
  47. # Local variables:
  48. # fill-column: 72
  49. # mode: conf
  50. # End: