.gitattributes 730 B

123456789101112131415161718192021222324252627282930313233
  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. # Explicitly declare text files we want to always be normalized and converted
  5. # to native line endings on checkout.
  6. *.php text
  7. *.default text
  8. *.ctp text
  9. *.sql text
  10. *.md text
  11. *.po text
  12. *.js text
  13. *.css text
  14. *.ini text
  15. *.properties text
  16. *.txt text
  17. *.xml text
  18. *.yml text
  19. .htaccess text
  20. # Declare files that will always have CRLF line endings on checkout.
  21. *.bat eol=crlf
  22. # Declare files that will always have LF line endings on checkout.
  23. *.pem eol=lf
  24. # Denote all files that are truly binary and should not be modified.
  25. *.png binary
  26. *.jpg binary
  27. *.gif binary
  28. *.ico binary
  29. *.mo binary