gitlink-cli/.gitattributes

16 lines
426 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 统一文本文件为 LF 行尾。
# Windows 上 core.autocrlf 会把 LF 转成 CRLF导致 gofmt -s -l / CI make fmt
# 误报整个文件被改动。固定 LF 后所有平台一致。
* text=auto eol=lf
# 二进制文件(显式标记,避免被当作文本转码)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.exe binary
*.zip binary
*.gz binary