.gitattributes 383 B

1234567891011121314
  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. *.java text
  6. *.txt text
  7. # Denote all files that are truly binary and should not be modified.
  8. *.png binary
  9. *.jpg binary
  10. # Windows shell scripts have CRLF line termination
  11. *.bat eol=crlf