2
0

.gitattributes 408 B

123456789101112131415161718
  1. # Convert LF to CRLF on windows on checkout and convert back before submitting to the repository
  2. * text=auto
  3. # Explicitly declare text files to always be normalized and converted to native line endings on checkout
  4. *.cpp text
  5. *.inl text
  6. *.h text
  7. *.tof text
  8. *.bat text
  9. # Force shell files to use LF only
  10. *.sh text eol=lf
  11. gradlew text eol=lf
  12. # Declare binary file types
  13. *.tga binary
  14. *.bof binary
  15. *.bin binary