.gitattributes 860 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. *.m text
  8. *.h text
  9. *.inl text
  10. *.lua text
  11. *.vert text
  12. *.frag text
  13. *.material text
  14. *.form text
  15. *.theme text
  16. *.particle text
  17. *.animation text
  18. *.audio text
  19. *.terrain text
  20. *.config text
  21. *.txt text
  22. *.xml text
  23. *.md text
  24. *.sh text
  25. # Declare windows files that will always have CRLF line endings on checkout.
  26. *.sln text eol=crlf
  27. *.vcxproj text eol=crlf
  28. *.vcxproj.filters text eol=crlf
  29. *.bat text eol=crlf
  30. # Denote all files that are truly binary and should not be modified.
  31. *.png binary
  32. *.jpg binary
  33. *.psd binary
  34. *.dds binary
  35. *.pvr binary
  36. *.r16 binary
  37. *.fbx binary
  38. *.mb binary
  39. *.ogg binary
  40. *.wav binary
  41. *.raw binary
  42. *.ttf binary
  43. *.gpb binary