-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
30 lines (25 loc) · 1.02 KB
/
.gitattributes
File metadata and controls
30 lines (25 loc) · 1.02 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
# ═══════════════════════════════════════════════════════════════════
# .gitattributes — Binary/text handling for tryvit
# ═══════════════════════════════════════════════════════════════════
# Binary image assets — mark as binary for correct diff behavior
*.png binary
*.jpg binary
*.jpeg binary
*.ico binary
*.webp binary
# SVG — treat as text for diffs (they're XML)
*.svg text
# Font files
*.woff binary
*.woff2 binary
*.ttf binary
*.otf binary
# SQL files — force Unix LF line endings to prevent \r in PostgreSQL
# function bodies (core.autocrlf=true on Windows causes CRLF which
# breaks dynamic patching via pg_get_functiondef + regexp_replace)
*.sql text eol=lf
# Design source files (if ever added)
*.fig binary
*.sketch binary
*.psd binary
*.ai binary