-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
32 lines (27 loc) · 899 Bytes
/
Copy path.gitattributes
File metadata and controls
32 lines (27 loc) · 899 Bytes
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
# Normalize line endings in the repository.
# OneDrive sync had introduced mixed CRLF/LF; these rules keep the stored
# blobs consistent (LF) and check files out with the right endings per type.
# Default: treat as text, store as LF in the repo.
* text=auto eol=lf
# Shell scripts MUST be LF — CRLF breaks shebangs and heredocs.
*.sh text eol=lf
# PowerShell scripts use CRLF in the working tree (native on Windows).
*.ps1 text eol=crlf
# Documentation / config — explicit LF.
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
*.txt text eol=lf
LICENSE text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
# Binary assets — never normalize or diff as text.
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.zip binary
*.gz binary
*.pdf binary