gitattributes: handle patches as binaries

Avoid line ending conversions.
This commit is contained in:
Leonid Pliushch 2020-08-25 20:06:46 +03:00
parent 0267c6ce7a
commit f884852de2
1 changed files with 5 additions and 5 deletions

10
.gitattributes vendored
View File

@ -2,11 +2,11 @@
* text eol=lf
# Patches.
*.diff text=auto
*.patch text=auto
*.patch32 text=auto
*.patch64 text=auto
*.patch.* text=auto
*.diff text=binary
*.patch text=binary
*.patch32 text=binary
*.patch64 text=binary
*.patch.* text=binary
# Powershell scripts.
*.ps1 text eol=crlf