.gitattributes 515 B

1234567891011121314151617181920212223
  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. *.php text eol=lf
  6. *.sql text eol=lf
  7. *.htm text eol=lf
  8. *.html text eol=lf
  9. *.js text eol=lf
  10. *.css text eol=lf
  11. *.lang text eol=lf
  12. *.txt text eol=lf
  13. *.md text eol=lf
  14. *.bat text eol=lf
  15. # Denote all files that are truly binary and should not be modified.
  16. *.ico binary
  17. *.png binary
  18. *.jpg binary
  19. *.odt binary
  20. *.odf binary