.gitattributes 919 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. *.project text
  26. *.cproject text
  27. # Declare windows files that will always have CRLF line endings on checkout.
  28. *.sln text eol=crlf
  29. *.vcxproj text eol=crlf
  30. *.vcxproj.filters text eol=crlf
  31. .vsxproj.user text eol=crlf
  32. *.bat text eol=crlf
  33. # Denote all files that are truly binary and should not be modified.
  34. *.png binary
  35. *.jpg binary
  36. *.psd binary
  37. *.dds binary
  38. *.pvr binary
  39. *.r16 binary
  40. *.fbx binary
  41. *.mb binary
  42. *.ogg binary
  43. *.wav binary
  44. *.raw binary
  45. *.ttf binary
  46. *.gpb binary