.gitattributes 395 B

1234567891011121314
  1. # Recommedations from GitHub help pages
  2. # Set the default behavior, in case people don't have core.autocrlf set.
  3. * text=auto
  4. # Declare files that will always have CRLF line endings on checkout.
  5. *.cmd text eol=crlf
  6. *.txt text eol=crlf
  7. # Declare files that will always have LF line endings on checkout.
  8. *.sh text eol=lf
  9. *.py text eol=lf
  10. # Declare files that are binary on checkout.
  11. *.exe binary