.gitattributes 535 B

1234567891011121314151617181920
  1. # Set the default behavior, in case people don't have core.autocrlf set.
  2. * text=auto
  3. # Explicitly declare text files you want to always be normalized and converted
  4. # to native line endings on checkout.
  5. *.c text
  6. *.h text
  7. *.txt text
  8. *.xsd text
  9. *.pdsc text
  10. *.svd text
  11. *.bat text
  12. # Declare files that will always have CRLF line endings on checkout.
  13. *.uvproj text eol=crlf
  14. *.uvproj text eol=crlf
  15. # Denote all files that are truly binary and should not be modified.
  16. *.png binary
  17. *.jpg binary
  18. # Script files
  19. *.py text eol=lf
  20. *.sh text eol=lf