Update .gitattributes
Browse files- .gitattributes +49 -35
.gitattributes
CHANGED
|
@@ -1,35 +1,49 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
*
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
*.
|
| 9 |
-
*.
|
| 10 |
-
*.
|
| 11 |
-
*.
|
| 12 |
-
*.
|
| 13 |
-
*.
|
| 14 |
-
*.
|
| 15 |
-
*.
|
| 16 |
-
*.
|
| 17 |
-
*.
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
*.
|
| 21 |
-
*.
|
| 22 |
-
*.pt
|
| 23 |
-
*.
|
| 24 |
-
*.
|
| 25 |
-
*.
|
| 26 |
-
|
| 27 |
-
*.
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
*.
|
| 31 |
-
*.
|
| 32 |
-
*.
|
| 33 |
-
*.
|
| 34 |
-
*.
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Hugging Face Space - Stable Diffusion Image Generator
|
| 2 |
+
# SIMPLIFIED - No Git LFS needed (models downloaded at runtime)
|
| 3 |
+
|
| 4 |
+
# Global text handling
|
| 5 |
+
* text=auto
|
| 6 |
+
|
| 7 |
+
# Text files - force LF line endings (Linux/Mac compatible)
|
| 8 |
+
*.py text eol=lf
|
| 9 |
+
*.txt text eol=lf
|
| 10 |
+
*.md text eol=lf
|
| 11 |
+
*.json text eol=lf
|
| 12 |
+
*.yaml text eol=lf
|
| 13 |
+
*.yml text eol=lf
|
| 14 |
+
*.toml text eol=lf
|
| 15 |
+
*.html text eol=lf
|
| 16 |
+
*.css text eol=lf
|
| 17 |
+
*.js text eol=lf
|
| 18 |
+
|
| 19 |
+
# Binary files - don't touch (but we're not storing any)
|
| 20 |
+
*.bin -text
|
| 21 |
+
*.pth -text
|
| 22 |
+
*.pt -text
|
| 23 |
+
*.safetensors -text
|
| 24 |
+
*.ckpt -text
|
| 25 |
+
*.pkl -text
|
| 26 |
+
*.npy -text
|
| 27 |
+
*.onnx -text
|
| 28 |
+
|
| 29 |
+
# Images - binary format
|
| 30 |
+
*.jpg -text
|
| 31 |
+
*.jpeg -text
|
| 32 |
+
*.png -text
|
| 33 |
+
*.gif -text
|
| 34 |
+
*.webp -text
|
| 35 |
+
|
| 36 |
+
# Archives - binary
|
| 37 |
+
*.zip -text
|
| 38 |
+
*.tar -text
|
| 39 |
+
*.gz -text
|
| 40 |
+
*.7z -text
|
| 41 |
+
|
| 42 |
+
# Exclude Python cache and build artifacts
|
| 43 |
+
__pycache__/ export-ignore
|
| 44 |
+
*.pyc export-ignore
|
| 45 |
+
*.pyo export-ignore
|
| 46 |
+
*.pyd export-ignore
|
| 47 |
+
*.egg-info/ export-ignore
|
| 48 |
+
dist/ export-ignore
|
| 49 |
+
build/ export-ignore
|