.gitignore 354 B

12345678910111213141516171819202122232425
  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. base/tests/*
  19. /datastore/.config/*
  20. # Ignore misc files that need not be in the repo
  21. /robots.txt