Commit
·
56d688e
1
Parent(s):
58f0729
🔧 Update .gitignore to exclude video files and cache
Browse files- Exclude *.mp4 files from version control
- Exclude __pycache__/ directories
- Exclude temporary files and outputs
- .gitignore +10 -0
.gitignore
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
# Exclude video files and cache
|
| 3 |
+
*.mp4
|
| 4 |
+
__pycache__/
|
| 5 |
+
*.pyc
|
| 6 |
+
*.pyo
|
| 7 |
+
.DS_Store
|
| 8 |
+
temp/
|
| 9 |
+
outputs/*.mp4
|
| 10 |
+
samples/*.mp4
|