.gitattributes 563 B

12345678910111213141516171819202122
  1. # Declare files that will always have LF line endings on checkout.
  2. *.cpp text eol=lf
  3. *.h text eol=lf
  4. *.c text eol=lf
  5. *.cc text eol=lf
  6. *.cpp text eol=lf
  7. *.rc text eol=lf
  8. *.hpp text eol=lf
  9. *.txt text eol=lf
  10. *.cmake text eol=lf
  11. *.sh text eol=lf
  12. CHANGES text eol=lf
  13. CREDITS text eol=lf
  14. LICENSE text eol=lf
  15. Readme.md text eol=lf
  16. # make sure that repo-specific settings (.gitignore, CI-setup,...)
  17. # are excluded from the source-package generated via 'git archive'
  18. .git* export-ignore
  19. /.travis* export-ignore
  20. /.coveralls* export-ignore
  21. appveyor.yml export-ignore