• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Text type files use auto line endings
2* text=auto
3
4# Explicitly declare text file types for this repo
5*.c text
6*.cpp text
7*.h text
8*.md text
9Jenkinsfile text
10
11# VS solutions always use Windows line endings
12*.sln text eol=crlf
13*.vcxproj text eol=crlf
14
15# Bash scripts always use *nux line endings
16*.sh text eol=lf
17
18# Denote all files that are truly binary and should not be modified.
19*.png binary
20*.hdr binary
21*.exe binary
22