Files
Dan Rosser 9a750f98fd .gitattributes line endings / script chmod (#8248)
* .gitattributes fix for bash scripts

* Scripts to unix ln

* Windows Files to crlf
2025-01-13 03:16:14 +11:00

27 lines
558 B
Plaintext

# This is based on the Github .gitattributes templates
* text=auto
# Explicitly declare text files to normalize
*.cpp text
*.h text
*.mm text
# Files with CRLF line endings for Windows
*.sln text eol=crlf
*.vcxproj* text eol=crlf
.appveyor.yml text eol=crlf
*.bat text eol=crlf
*.props text eol=crlf
*.filters text eol=crlf
# Files with LF line endings for Unix-like systems
*.sh text eol=lf
# Binary files (no EOL normalization)
*.png binary
*.jpg binary
# Exclude .patch files in apothecary from EOL normalization
scripts/apothecary/**/*.patch -text