.gitignore 320 B

123456789101112131415161718192021222324
  1. # .gitignore - List of filenames git should ignore
  2. # Filenames that should be ignored wherever they appear
  3. *~
  4. *.rej
  5. *.pyc
  6. *.pyo
  7. TAGS
  8. tags
  9. ID
  10. .DS_Store*
  11. # Vim swap files.
  12. .*.sw[a-z]
  13. # Directories
  14. .obj/
  15. _tools/
  16. datastore/
  17. datastore
  18. # Ignore misc files that need not be in the repo
  19. /robots.txt