.gitignore 891 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. *.diff
  10. *.dvi
  11. *.elc
  12. *.fn
  13. *.fns
  14. *.html
  15. *.info
  16. *.ky
  17. *.kys
  18. *.log
  19. *.patch
  20. *.pdf
  21. *.pg
  22. *.pgs
  23. *.ps
  24. *.toc
  25. *.tp
  26. *.vr
  27. *.vrs
  28. orgcard_letter.tex
  29. orgcard.txt
  30. org
  31. org-loaddefs.el
  32. org-version.el
  33. doc/org.texi
  34. doc/org-version.inc
  35. doc/org-version.tex
  36. org-*.tar*
  37. orgplus-*.tar*
  38. org-*.zip
  39. version.mk
  40. manual
  41. org_dual_license.texi
  42. ORGWEBPAGE/Changes.txt
  43. local*.mk
  44. .gitattributes
  45. mk/x11idle
  46. ChangeLog
  47. # texi2pdf --tidy
  48. doc/*.t2d
  49. # aspell word and replacement lists
  50. .aspell.org.pws
  51. .aspell.org.prepl
  52. # allow tmp and test directories that will not be tracked
  53. test
  54. t
  55. auto
  56. tmp
  57. TODO
  58. # and collateral damage from Emacs
  59. *~
  60. .DS_Store
  61. *#
  62. .#*
  63. #
  64. # Local variables:
  65. # End: