.gitignore_global (1009B)
1 # Compiled source # 2 ################### 3 ,*.com 4 ,*.class 5 ,*.dll 6 ,*.exe 7 ,*.o 8 ,*.so 9 10 # Packages # 11 ############ 12 # it's better to unpack these files and commit the raw source 13 # git has its own built in compression methods 14 ,*.7z 15 ,*.dmg 16 ,*.gz 17 ,*.iso 18 ,*.jar 19 ,*.rar 20 ,*.tar 21 ,*.zip 22 23 # Logs and databases # 24 ###################### 25 ,*.log 26 ,*.sql 27 ,*.sqlite 28 29 # OS generated files # 30 ###################### 31 .DS_Store 32 .DS_Store? 33 ._* 34 .Spotlight-V100 35 .Trashes 36 ehthumbs.db 37 Thumbs.db 38 39 # Byte-compiled / optimized / DLL files 40 __pycache__/ 41 ,*.py[cod] 42 43 # C extensions 44 ,*.so 45 46 # Distribution / packaging 47 bin/ 48 build/ 49 develop-eggs/ 50 dist/ 51 eggs/ 52 lib/ 53 lib64/ 54 parts/ 55 sdist/ 56 var/ 57 ,*.egg-info/ 58 .installed.cfg 59 ,*.egg 60 61 # Installer logs 62 pip-log.txt 63 pip-delete-this-directory.txt 64 65 # Unit test / coverage reports 66 .tox/ 67 .coverage 68 .cache 69 nosetests.xml 70 coverage.xml 71 72 # Translations 73 ,*.mo 74 75 # Mr Developer 76 .mr.developer.cfg 77 .project 78 .pydevproject 79 80 # Rope 81 .ropeproject 82 83 # Django stuff: 84 ,*.log 85 ,*.pot 86 87 # Sphinx documentation 88 docs/_build/ 89 90 local_settings.py