diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-05-22 21:50:50 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-22 23:01:26 +0300 |
commit | bf7e46ec26c8f0f9f7e578e070be4b2fc2cdf5a8 (patch) | |
tree | f3fa6af604c8fee0d29362fc1cd0576bd10a96c7 /.gitattributes | |
parent | e2e37cced861b98de8c1a7c9c0d3a50d2d90e433 (diff) |
Add Git attributes file to prevent accidental line ending changes
Diffstat (limited to '.gitattributes')
-rw-r--r-- | .gitattributes | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..3a4c44aedc --- /dev/null +++ b/.gitattributes @@ -0,0 +1,35 @@ +* text eol=lf + +# VSTool (normalization disabled) +indra/tools/vstool/* -text + +# Images +*.bmp binary +*.BMP binary +*.gif binary +*.icns binary +*.ico binary +*.j2c binary +*.j2k binary +*.jpg binary +*.png binary +*.tga binary +*.tif binary + +# Viewer resources +*.db2 binary +*.llm binary +*.nib binary +*.rtf binary +*.ttf binary + +# Executables +*.dll binary +*.exe binary + +# Files with Windows line endings +VivoxAUP.txt text eol=crlf +FILES_ARE_UNICODE_UTF-16LE.txt text eol=crlf + +# Windows Manifest files +*.manifest text eol=crlf |