-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitattributes
55 lines (50 loc) · 1.32 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
# Auto detect text files and perform LF normalization
* text=auto
# The above will handle all files not found below
# Documents
*.doc diff=astextplain
*.docx diff=astextplain
*.xls diff=astextplain
*.xlsx diff=astextplain
*.pdf diff=astextplain
*.rtf diff=astextplain
# These files are text and should be normalized (convert CRLF => LF)
*.css text
*.js text
*.htm text
*.html text
*.xml text
*.txt text
*.ini text
*.md text
*.sass text
*.json text
*.java text
*.properties text
*.cs text diff=csharp
*.m text
*.h text
*.resx text
# These files are binary and should be left untouched
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.svg binary
*.eot binary
*.ttf binary
*.woff binary
*.otf binary
*.ico binary
*.zip binary
*.7z binary
*.rar binary
*.class binary
*.dll binary
*.pdb binary
# Custom for Visual Studio
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union