.gitattributes 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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
  27. # Remove files for archives generated using `git archive`
  28. appveyor.yml export-ignore
  29. CONTRIBUTING.md export-ignore
  30. .editorconfig export-ignore
  31. .gitattributes export-ignore
  32. .gitignore export-ignore
  33. Makefile export-ignore
  34. phpunit.xml.dist export-ignore
  35. .travis.yml export-ignore
  36. tests/test_app export-ignore
  37. tests/TestCase export-ignore