-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
82 lines (79 loc) · 3.27 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
79
80
81
82
## https://git-scm.com/docs/gitattributes
## https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes
## https://github.com/gitattributes/gitattributes
## https://github.com/alexkaratarakis/gitattributes
# Set default behavior to automatically normalize line endings.
# Auto detect text files and perform LF normalization
* text=auto
# Project and solution files
# Files that will always have CRLF line endings on checkout.
*.sln text eol=crlf merge=union
*.manifest text eol=crlf
*.props text eol=crlf
*.targets text eol=crlf
*.json text
*.config text eol=crlf
*.ruleset text eol=crlf
*.resx text eol=crlf
*.xaml text eol=crlf diff=html
*.csproj text eol=crlf merge=union
*.cs text eol=crlf diff=csharp
*.csx text eol=crlf diff=csharp
*.cshtml text eol=crlf diff=html
*.vbproj text eol=crlf merge=union
*.vb text eol=crlf
*.vbx text eol=crlf
*.vbhtml text eol=crlf diff=html
*.vcxproj text eol=crlf merge=union
*.vcproj text eol=crlf merge=union
*.h text diff=cpp
*.c text diff=cpp
*.cpp text diff=cpp
SOURCES text
MAKEFILE text
*.fsproj text eol=crlf merge=union
*.fs text eol=crlf
*.sqlproj text eol=crlf merge=union
*.dbproj text eol=crlf merge=union
*.sql text
*.sqlgen text eol=crlf
*.wixproj text eol=crlf merge=union
*.shproj text eol=crlf merge=union
*.proj text eol=crlf merge=union
*.xml text diff=html
*.xsd text diff=html
*.html text diff=html
*.htm text diff=html
*.css text diff=css
*.less text diff=css
*.ts text
*.js text
*.map text
*.ps1 text eol=crlf
*.psm1 text eol=crlf
*.psd1 text eol=crlf
*.ps1xml text eol=crlf
*.cmd text eol=crlf
*.bat text eol=crlf
*.yml text
*.yaml text
*.licenseheader text eol=crlf
*.pubxml text eol=crlf
*.md text diff=markdown
*.txt text
# Binary files
*.exe binary
*.dll binary
*.pdb binary
*.xap binary
*.snk binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.bmp binary
*.webp binary
*.ico binary
*.cur binary
*.sys binary
*.chm binary