.gitignore 638 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. # Local variables:
  39. # fill-column: 72
  40. # mode: conf
  41. # End: