.gitignore 655 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. # and collateral damage from Emacs
  37. *~
  38. .DS_Store
  39. *#
  40. .#*
  41. #
  42. # Local variables:
  43. # fill-column: 72
  44. # mode: conf
  45. # End: