12345678910111213141516171819202122232425 |
- # .gitignore - List of filenames git should ignore
- # Filenames that should be ignored wherever they appear
- *~
- *.rej
- *.pyc
- *.pyo
- TAGS
- tags
- ID
- .DS_Store*
- # Vim swap files.
- .*.sw[a-z]
- # Directories
- .obj/
- _tools/
- datastore/
- datastore
- base/tests/*
- # Ignore misc files that need not be in the repo
- /robots.txt
|