.gitignore 688 B

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