-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
101 lines (89 loc) · 2.73 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# normalize line endings
* text=auto
# use c# diff for .cs files
*.cs text diff=csharp
# force conflict resolution of project files
*.sln text eol=crlf merge=union
*.csproj text merge=union
*.vbproj text merge=union
*.vcxproj text merge=union
*.vcproj text merge=union
*.dbproj text merge=union
*.fsproj text merge=union
*.lsproj text merge=union
*.wixproj text merge=union
*.modelproj text merge=union
*.sqlproj text merge=union
*.wwaproj text merge=union
# xcode project files are unioned as binary files
*.pbxproj binary merge=union
# known binary files are treated as binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.fla binary
*.swf binary
*.gz binary
*.zip binary
*.7z binary
*.ttf binary
*.pyc binary
*.pdf binary
# documentation
*.md text
LICENSE text
AUTHORS text
# known plain text files are treated as plain text
*.doc text diff=astextplain
*.DOC text diff=astextplain
*.docx text diff=astextplain
*.DOCX text diff=astextplain
*.dot text diff=astextplain
*.DOT text diff=astextplain
*.pdf text diff=astextplain
*.PDF text diff=astextplain
*.rtf text diff=astextplain
*.RTF text diff=astextplain
# git/tfvc config
.gitattributes text
.gitignore text
.tfignore text
# web source file types
*.php text
*.css text
*.sass text
*.scss text
*.less text
*.styl text
*.js text
*.coffee text
*.json text
*.htm text
*.html text
*.xml text
*.inc text
*.pl text
*.rb text
*.py text
*.scm text
*.sql text
# nuget files
.nuspec text
# config files
.config text
# windows files
*.cmd text eol=crlf
*.bat text eol=crlf
*.txt text eol=crlf
*.ini text eol=crlf
*.ps1 text eol=crlf
*.psm1 text eol=crlf
*.psd1 text eol=crlf
# unix files
*.sh text eol=lf