-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
67 lines (60 loc) · 1.45 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
# See https://help.github.com/articles/dealing-with-line-endings
# Set default behaviour, in case users don't have core.autocrlf set.
* text=input
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
.gitattributes text eol=lf
.gitignore text eol=lf
*.md text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.jsx text eol=lf
*.tsx text eol=lf
*.xml text eol=lf
*.json text eol=lf
*.gradle text eol=lf
*.config text eol=lf
*.properties text eol=lf
*.pbxproj text eol=lf
*.plist text eol=lf
*.lock text eol=lf
*.c text eol=lf
*.h text eol=lf
*.md text eol=lf
*.clj text eol=lf
*.java text eol=lf
*.scala text eol=lf
*.build text eol=lf
*.sbt text eol=lf
*.in text eol=lf
*.ac text eol=lf
*.sh text eol=lf
targets.make text eol=lf
install-sh text eol=lf
# Custom for Visual Studio
*.cs text diff=csharp
*.fs text
*.fsx text
*.csproj text merge=union
*.vbproj text merge=union
*.fsproj text merge=union
*.dbproj text merge=union
# always has CRLF line ending on checkout
*.sln text eol=crlf merge=union
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.gif binary
*.jar binary
*.ico binary
# 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