Skip to content

Commit 0dbed45

Browse files
committed
adding gitignore and gitattributes
0 parents  commit 0dbed45

File tree

2 files changed

+159
-0
lines changed

2 files changed

+159
-0
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.pickle filter=lfs diff=lfs merge=lfs -text
2+
*.pkl filter=lfs diff=lfs merge=lfs -text
3+
*.zip filter=lfs diff=lfs merge=lfs -text
4+
*.mp4 filter=lfs diff=lfs merge=lfs -text

.gitignore

Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Compiled Object files
5+
*.slo
6+
*.lo
7+
*.o
8+
*.obj
9+
10+
# Precompiled Headers
11+
*.gch
12+
*.pch
13+
14+
# Compiled Dynamic libraries
15+
*.so
16+
*.dylib
17+
*.dll
18+
19+
# Fortran module files
20+
*.mod
21+
*.smod
22+
23+
# Compiled Static libraries
24+
*.lai
25+
*.la
26+
*.a
27+
*.lib
28+
29+
# Executables
30+
*.exe
31+
*.out
32+
*.app
33+
34+
# VSCODE precompiled headers
35+
.vscode/ipch/
36+
37+
# Ignore all bazel-* symlinks. There is no full list since this can change
38+
# based on the name of the directory bazel is cloned into.
39+
/bazel-*
40+
41+
# Byte-compiled / optimized / DLL files
42+
__pycache__/
43+
*.py[cod]
44+
*$py.class
45+
46+
# Distribution / packaging
47+
.Python
48+
build/
49+
develop-eggs/
50+
dist/
51+
downloads/
52+
eggs/
53+
.eggs/
54+
lib/
55+
lib64/
56+
parts/
57+
sdist/
58+
var/
59+
wheels/
60+
*.egg-info/
61+
.installed.cfg
62+
*.egg
63+
MANIFEST
64+
65+
# PyInstaller
66+
# Usually these files are written by a python script from a template
67+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
68+
*.manifest
69+
*.spec
70+
71+
# Installer logs
72+
pip-log.txt
73+
pip-delete-this-directory.txt
74+
75+
# Unit test / coverage reports
76+
htmlcov/
77+
.tox/
78+
.coverage
79+
.coverage.*
80+
.cache
81+
nosetests.xml
82+
coverage.xml
83+
*.cover
84+
.hypothesis/
85+
.pytest_cache/
86+
87+
# Translations
88+
*.mo
89+
*.pot
90+
91+
# Django stuff:
92+
*.log
93+
local_settings.py
94+
db.sqlite3
95+
96+
# Flask stuff:
97+
instance/
98+
.webassets-cache
99+
100+
# Scrapy stuff:
101+
.scrapy
102+
103+
# Sphinx documentation
104+
docs/_build/
105+
106+
# PyBuilder
107+
target/
108+
109+
# Jupyter Notebook
110+
.ipynb_checkpoints
111+
112+
# pyenv
113+
.python-version
114+
115+
# celery beat schedule file
116+
celerybeat-schedule
117+
118+
# SageMath parsed files
119+
*.sage.py
120+
121+
# Environments
122+
.env
123+
.venv
124+
env/
125+
venv/
126+
ENV/
127+
env.bak/
128+
venv.bak/
129+
130+
# Spyder project settings
131+
.spyderproject
132+
.spyproject
133+
134+
# Rope project settings
135+
.ropeproject
136+
137+
# mkdocs documentation
138+
/site
139+
140+
# mypy
141+
.mypy_cache/
142+
143+
python/venv
144+
node_modules
145+
web/node_modules
146+
147+
.DS_Store
148+
.gitkeep
149+
150+
*.scenario
151+
152+
*vs_code_bazel_build*
153+
154+
**/_pgfcache/*.tex
155+
**/_pgfcache/*.pdf

0 commit comments

Comments
 (0)