.gitattributes 544 B

123456789101112131415161718192021222324
  1. # Set the default behavior, in case people don't have core.autocrlf set.
  2. * text=auto
  3. # Explicitly declare text files you want to always be normalized and converted
  4. # to native line endings on checkout.
  5. *.c eol=lf
  6. *.cpp eol=lf
  7. *.h eol=lf
  8. *.hpp eol=lf
  9. *.lua eof=lf
  10. *.sh eof=lf
  11. *.txt eof=lf
  12. *.md eof=lf
  13. *.in eof=lf
  14. *.rb eof=lf
  15. # Declare files that will always have CRLF line endings on checkout.
  16. *.sln text eol=crlf
  17. # Denote all files that are truly binary and should not be modified.
  18. *.so binary
  19. *.dll binary
  20. *.exe binary
  21. *.tga binary