.gitattributes 690 B

123456789101112131415161718192021222324252627282930
  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. *.md text
  11. *.po text
  12. *.js text
  13. *.css text
  14. *.ini text
  15. *.txt text
  16. *.xml text
  17. # Declare files that will always have CRLF line endings on checkout.
  18. *.bat eol=crlf
  19. # Declare files that will always have LF line endings on checkout.
  20. *.pem eol=lf
  21. # Denote all files that are truly binary and should not be modified.
  22. *.png binary
  23. *.jpg binary
  24. *.gif binary
  25. *.ico binary
  26. *.mo binary