-
Notifications
You must be signed in to change notification settings - Fork 263
/
.gitattributes
37 lines (34 loc) · 1018 Bytes
/
.gitattributes
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
32
33
34
35
36
37
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto
# Explicitly list our text file types. We don't want to risk having binary
# files having linefeed normalization! We want these to use CRLF so that
# Windows users see and edit them correctly in Notepad, for example.
*.cs text diff=csharp eol=crlf
*.sln text merge=union eol=crlf
*.csproj text merge=union eol=crlf
*.html text diff=html
*.txt text eol=crlf
*.py text eol=crlf
*.cmd text eol=crlf
*.bat text eol=crlf
*.config text eol=crlf
*.xml text eol=crlf
*.xsd text eol=crlf
*.md text eol=crlf
# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
# Denote all files that are truly binary and should not be modified.
*.dll binary
*.exe binary
*.png binary
*.jpg binary
*.ico binary