.gitattributes 830 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Set default behaviour, in case users don't have core.autocrlf set.
  2. * text=auto
  3. # Explicitly declare text files we want to always be normalized and converted to native line endings on checkout.
  4. *.cpp text
  5. *.c text
  6. *.mm text
  7. *.h text
  8. *.inl text
  9. *.lua text
  10. *.vert text
  11. *.frag text
  12. *.material text
  13. *.form text
  14. *.theme text
  15. *.particle text
  16. *.animation text
  17. *.audio text
  18. *.terrain text
  19. *.config text
  20. *.txt text
  21. *.md text
  22. # Declare windows files that will always have CRLF line endings on checkout.
  23. *.sln text eol=crlf
  24. *.vcxproj text eol=crlf
  25. *.vcxproj.filters text eol=crlf
  26. *.bat text eol=crlf
  27. # Denote all files that are truly binary and should not be modified.
  28. *.png binary
  29. *.jpg binary
  30. *.psd binary
  31. *.dds binary
  32. *.pvr binary
  33. *.r16 binary
  34. *.fbx binary
  35. *.mb binary
  36. *.ogg binary
  37. *.wav binary
  38. *.raw binary
  39. *.ttf binary
  40. *.gpb binary