37 lines
645 B
Plaintext
37 lines
645 B
Plaintext
# .gitattributes
|
|
# See http://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes
|
|
|
|
# default EOL behavior: use LF in repo, normalize (convert to native) during
|
|
# checkout
|
|
* text=auto
|
|
|
|
# text files that shall always have LF EOLs
|
|
*.sh text eol=lf
|
|
*.bash text eol=lf
|
|
|
|
# text files that shall always have CRLF EOLs
|
|
*.bat text eol=crlf
|
|
*.cmd text eol=crlf
|
|
*.btm text eol=crlf
|
|
*.ps1 text eol=crlf
|
|
|
|
# binary files
|
|
*.tar binary
|
|
*.zip binary
|
|
*.rar binary
|
|
*.gz binary
|
|
*.bz2 binary
|
|
*.xz binary
|
|
|
|
*.deb binary
|
|
*.rpm binary
|
|
*.jar binary
|
|
*.whl binary
|
|
|
|
*.png binary
|
|
*.jpg binary
|
|
*.jpeg binary
|
|
|
|
# diff/merge helper for gpg files
|
|
*.gpg diff=gpg
|