Update .gitattributes
Browse files- .gitattributes +5 -5
.gitattributes
CHANGED
|
@@ -1,20 +1,20 @@
|
|
| 1 |
-
#
|
| 2 |
* text=auto eol=lf
|
| 3 |
|
| 4 |
-
# Treat
|
| 5 |
*.py text diff=python
|
| 6 |
*.md text
|
| 7 |
*.txt text
|
| 8 |
*.csv text
|
| 9 |
*.json text
|
| 10 |
|
| 11 |
-
# Binary
|
| 12 |
*.png binary
|
| 13 |
*.jpg binary
|
| 14 |
*.jpeg binary
|
| 15 |
*.gif binary
|
| 16 |
*.webp binary
|
| 17 |
|
| 18 |
-
#
|
| 19 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 20 |
-
*.pt
|
|
|
|
| 1 |
+
# Normalize line endings
|
| 2 |
* text=auto eol=lf
|
| 3 |
|
| 4 |
+
# Treat main text formats as text
|
| 5 |
*.py text diff=python
|
| 6 |
*.md text
|
| 7 |
*.txt text
|
| 8 |
*.csv text
|
| 9 |
*.json text
|
| 10 |
|
| 11 |
+
# Binary assets
|
| 12 |
*.png binary
|
| 13 |
*.jpg binary
|
| 14 |
*.jpeg binary
|
| 15 |
*.gif binary
|
| 16 |
*.webp binary
|
| 17 |
|
| 18 |
+
# Large models (use Git LFS if ever needed)
|
| 19 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|