You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitattributes 600 B

1234567891011121314151617181920212223242526272829
  1. # Everything is text unless it isn’t.
  2. * text=auto
  3. # Source files are whatever the OS prefers but should be
  4. # normalised in the repository.
  5. *.c text
  6. *.cpp text
  7. *.cc text
  8. *.h text
  9. *.hh text
  10. *.lolfx text
  11. *.cs text
  12. # Vim doesn't like CRLF, even on Windows.
  13. *.vim text eol=lf
  14. # This allows autoconf/automake to work with the Linux subsystem
  15. *.m4 text eol=lf
  16. *.ac text eol=lf
  17. *.am text eol=lf
  18. # This is Windows-specific and should always have CRLF, or
  19. # Visual Studio may misbehave.
  20. *.sln text eol=crlf
  21. *.csproj text eol=crlf
  22. *.vcxproj text eol=crlf
  23. *.resx text eol=crlf