-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
79 lines (69 loc) · 1.35 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Catch all for anything we forgot. Add rules if you get CRLF to LF warnings.
* text=auto
# Text files that should be normalized to LF in odb.
*.cs text diff=csharp
*.xaml text
*.config text
*.c text
*.h text
*.cpp text
*.hpp text
*.sln text
*.csproj text
*.vcxproj text
*.vbproj text eol=crlf
*.vcproj text eol=crlf
*.dbproj text eol=crlf
*.fsproj text eol=crlf
*.lsproj text eol=crlf
*.wixproj text eol=crlf
*.modelproj text eol=crlf
*.sqlproj text eol=crlf
*.wmaproj text eol=crlf
*.xproj text eol=crlf
*.props text eol=crlf
*.filters text eol=crlf
*.vcxitems text eol=crlf
*.md text
*.tt text
*.sh text
*.ps1 text
*.cmd text
*.bat text
*.markdown text
*.msbuild text
*.rc text
*.html text
# Binary files that should not be normalized or diffed
*.bmp binary
*.cmp binary
*.dib binary
*.gif binary
*.ico binary
*.j2k binary
*.jb2 binary
*.jp2 binary
*.jpg binary
*.jpeg binary
*.key binary
*.otf binary
*.pdf binary
*.pfb binary
*.png binary
*.tif binary
*.tiff binary
*.ttc binary
*.ttf binary
*.wmf binary
*.xml binary
*.pfx binary
*.snk binary
*.dll binary
*.exe binary
*.lib binary
*.exp binary
*.pdb binary
*.sdf binary
*.7z binary
# Generated file should just use CRLF, it's fiiine
SolutionInfo.cs text eol=crlf diff=csharp