1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 13:44:14 +01:00

New .gitignore file to make Git ignore backups and compiled Python code

- *~ makes Git ignore backup files created by editors like Emacs and Gedit.
- *.pyc makes Git ignore for example __pycache__/svtplay_dl.cpython-33.pyc
  Since the __pycache__ directory is now considiered empty, it is also ignored.
This commit is contained in:
Anton Eliasson 2013-01-14 16:08:11 +01:00
parent 4cf75a1b91
commit e9e0705e66

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*~
*.pyc