25 lines
540 B
Plaintext
25 lines
540 B
Plaintext
# 줄바꿈 정규화 — 어떤 OS에서 클론해도 저장소 내부는 LF로 통일 (Windows 작업 시 CRLF 변환 churn 방지)
|
|
* text=auto eol=lf
|
|
|
|
# Windows 전용 스크립트는 CRLF 유지
|
|
*.bat text eol=crlf
|
|
*.cmd text eol=crlf
|
|
*.ps1 text eol=crlf
|
|
|
|
# 셸 스크립트는 LF 강제
|
|
*.sh text eol=lf
|
|
|
|
# 바이너리 — 변환/diff 제외
|
|
*.png binary
|
|
*.jpg binary
|
|
*.jpeg binary
|
|
*.gif binary
|
|
*.ico binary
|
|
*.webp binary
|
|
*.woff binary
|
|
*.woff2 binary
|
|
*.ttf binary
|
|
*.otf binary
|
|
*.jar binary
|
|
*.keystore binary
|