-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
63 lines (55 loc) · 1.34 KB
/
.gitattributes
File metadata and controls
63 lines (55 loc) · 1.34 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Auto-detect text files and normalize line endings to LF on commit
* text=auto eol=lf
# --- Source code (always LF) ---
*.java text eol=lf
*.go text eol=lf
*.py text eol=lf
*.sh text eol=lf
*.kts text eol=lf
# --- Build / config ---
*.xml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.toml text eol=lf
*.json text eol=lf
*.properties text eol=lf
Makefile text eol=lf
makefile text eol=lf
Dockerfile text eol=lf
.editorconfig text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
# --- Documentation ---
*.md text eol=lf
*.txt text eol=lf
LICENSE text eol=lf
NOTICE text eol=lf
CODEOWNERS text eol=lf
# --- Maven Wrapper (mvnw is shell, mvnw.cmd is Windows batch) ---
mvnw text eol=lf
mvnw.cmd text eol=crlf
# --- Model artifacts (Git LFS) ---
*.onnx filter=lfs diff=lfs merge=lfs -text
*.gguf filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
# --- Native binary libraries (not LFS — small and version-coupled to source) ---
*.dll binary
*.so binary
*.dylib binary
*.lib binary
*.a binary
# --- Images / fonts ---
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.icns binary
*.woff binary
*.woff2 binary
*.ttf binary
# SVG is text but still binary-ish for diffs
*.svg text