.gitignore 302 B

12345678910111213141516171819202122
  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. .cache/
  16. .src/
  17. # Ignore misc files that need not be in the repo
  18. /robots.txt