1234567891011121314151617181920 |
- # .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]
- # Build directories
- /obj*/
- /build-*/
- /dist/
- /.dist/
|