.gitignore 302 B

1234567891011121314151617181920212223
  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. /build-*/
  16. /datastore/
  17. # Ignore misc files that need not be in the repo