.gitattributes 606 B

123456789101112131415161718192021222324252627282930313233
  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
  4. # to native line endings on checkout.
  5. *.txt text
  6. *.cpp text
  7. *.c text
  8. *.h text
  9. *.cmd text
  10. *.sln text
  11. *.vcproj text
  12. *.vcxproj text
  13. *.vcxproj.filters text
  14. *.page text
  15. *.html text
  16. *.xhtml text
  17. *.css text
  18. *.js text
  19. *.progen text
  20. *.xml text
  21. *.xsd text
  22. *.template text
  23. *.properties text
  24. *.ini text
  25. *.vxbuild text
  26. # Denote all files that are truly binary and should not be modified.
  27. *.bin binary
  28. *.mc binary
  29. *.png binary
  30. *.jpg binary
  31. *.gif binary