-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
46 lines (39 loc) · 819 Bytes
/
Copy path.gitignore
File metadata and controls
46 lines (39 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Python
__pycache__/
*.py[cod]
*.pyo
.venv/
venv/
env/
# OpenSCAD intermediate
*.csg
# 3D slicer output (STL files ARE tracked as deliverables)
*.gcode
*.3mf
*.bgcode
# OS noise
.DS_Store
Thumbs.db
desktop.ini
# Editors / IDE
.vscode/
.idea/
*.swp
*~
# Temp / build artifacts
*.bak
*.tmp
*.log
out.tmp
err.tmp
# Scratch: animation runs, logs, probe outputs, local backups. Files already
# tracked in here (wip/_parts.py) keep showing their changes regardless.
wip/
# Render outputs are regenerable scratch — never commit PNGs...
*.png
# ...EXCEPT the one tracked per-project thumbnail (produced on request)
!thumbnail.png
# ...and the film's overlay deliverables
!marketing/overlays/*.png
# (PNGs committed before this rule — logo, preview/ — stay tracked; git
# ignores only apply to untracked files)