1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# Set default behaviour
* text=auto
# Explicitly declare text file we always want to be normalized
*.c text
*.cpp text
*.h text
*.i text
*.hpp text
*.xml text
*.py text
*.yml text
*.md text
# Declare files that will always have CRLF endings
*.sln text eol=crlf
*.bat text eol=crlf
*.iss text eol=crlf
*.user text eol=crlf
*.vcproj text eol=crlf
*.sln text eol=crlf
# Denote all files that are truly binary
*.png binary
*.gif binary
*.pdf binary
*.ai binary
*.svg binary
*.rtf binary
*.dll binary
*.exe binary
|