21 lines
557 B
Plaintext
21 lines
557 B
Plaintext
# https://docs.github.com/cn/get-started/getting-started-with-git/configuring-git-to-handle-line-endings
|
|
|
|
# Automatically normalize line endings (to LF) for all text-based files.
|
|
* text=auto eol=lf
|
|
|
|
# Declare files that will always have CRLF line endings on checkout.
|
|
*.cmd text eol=crlf
|
|
*.[cC][mM][dD] text eol=crlf
|
|
*.bat text eol=crlf
|
|
*.[bB][aA][tT] text eol=crlf
|
|
|
|
# Denote all files that are truly binary and should not be modified.
|
|
*.ico binary
|
|
*.png binary
|
|
*.jpg binary
|
|
*.jpeg binary
|
|
*.gif binary
|
|
*.webp binary
|
|
*.svg binary
|
|
*.woff binary
|
|
*.woff2 binary |