.gitattributes 772 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Define the line ending behavior of the different file extensions
  2. # Set default behaviour, in case users don't have core.autocrlf set.
  3. * text=auto
  4. * text eol=lf
  5. # Explicitly declare text files we want to always be normalized and converted
  6. # to native line endings on checkout.
  7. *.php text
  8. *.default text
  9. *.ctp text
  10. *.sql text
  11. *.md text
  12. *.po text
  13. *.js text
  14. *.css text
  15. *.ini text
  16. *.properties text
  17. *.txt text
  18. *.xml text
  19. *.yml text
  20. .htaccess text
  21. # Declare files that will always have CRLF line endings on checkout.
  22. *.bat eol=crlf
  23. # Declare files that will always have LF line endings on checkout.
  24. *.pem eol=lf
  25. # Denote all files that are truly binary and should not be modified.
  26. *.png binary
  27. *.jpg binary
  28. *.gif binary
  29. *.ico binary
  30. *.mo binary
  31. *.pdf binary
  32. *.phar binary