.gitignore 256 B

1234567891011121314151617181920
  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. # Build directories
  14. /obj*/
  15. /build-*/
  16. /dist/
  17. /.dist/