.gitattributes 564 B

12345678910111213141516171819202122232425
  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. *.bat text eol=crlf
  18. # Denote all files that are truly binary and should not be modified.
  19. *.so binary
  20. *.dll binary
  21. *.exe binary
  22. *.tga binary