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