-
-
Notifications
You must be signed in to change notification settings - Fork 803
/
.gitattributes
103 lines (89 loc) · 2.05 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
102
103
# Set default behaviour, in case users don't have core.autocrlf unset.
* -text
# These files are text and should be normalized (convert crlf => lf)
*.cs text diff=csharp
*.xaml text
*.csproj text
*.sln text
*.tt text
*.ps1 text
*.cmd text
*.msbuild text
*.md text
*.vb text
*.resx text
*.c text diff=cpp
*.cpp text diff=cpp
*.cxx text diff=cpp
*.h text diff=cpp
*.hxx text diff=cpp
*.py text diff=python
*.rb text diff=ruby
*.java text diff=java
*.html text diff=html
*.htm text diff=html
*.scss text
*.sass text
*.lisp text
*.clj text
*.sql text
*.php text
*.lua text
*.m text
*.asm text
*.erl text
*.fs text
*.fsx text
*.hs text
*.csproj text=auto
*.vbproj text=auto
*.fsproj text=auto
*.dbproj text=auto
# Declare files that will always have CRLF line endings on checkout.
*.sln text=auto eol=crlf
# Images should be treated as binary
# (binary is a macro for -text -diff)
*.png binary
*.PNG binary
*.jpg binary
*.JPG binary
*.jpeg binary
*.JPEG binary
*.gif binary
*.GIF binary
*.bmp binary
*.BMP binary
*.ico binary
*.ICO binary
*.ppm binary
*.pgm binary
*.pbm binary
*.xpm -text diff -merge
# Vector graphics
*.svg -text diff -merge
*.sdf binary
# CMake files
CMakeLists.txt text
*.cmake text
# Makefiles
Makefile text
makefile text
GNUmakefile text
*.mk text
# diff behavior for common document formats
*.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
# linguist overrides
*.cs linguist-language=C#
*.ps1 linguist-language=Powershell
*.psd1 linguist-language=Powershell
*.psm1 linguist-language=Powershell
*.sql linguist-language=TSQL