aboutsummaryrefslogtreecommitdiff
path: root/.gitattributes
blob: 130cddba4a0f6bd77d410b9ed2aa68dffa2f53ab (plain) (blame)
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
# Normalise line endings
*           text=auto

# Common Settings
# https://github.com/alexkaratarakis/gitattributes/blob/master/Common.gitattributes
# - Documents
*.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
*.md        text
*.adoc      text
*.textile   text
*.mustache  text
*.csv       text
*.tab       text
*.tsv       text
*.sql       text

# - Graphics
*.png       binary
*.jpg       binary
*.jpeg      binary
*.gif       binary
*.tif       binary
*.tiff      binary
*.ico       binary
# Might want to treat svg as text
*.svg       binary
*.eps       binary

# C# Settings
# https://github.com/alexkaratarakis/gitattributes/blob/master/CSharp.gitattributes
*.cs        diff=csharp

# Visual Studio Settings
# https://github.com/alexkaratarakis/gitattributes/blob/master/VisualStudio.gitattributes
*.sln       text eol=crlf
*.csproj    text eol=crlf
*.vbproj    text eol=crlf
*.vcxproj   text eol=crlf
*.vcproj    text eol=crlf
*.dbproj    text eol=crlf
*.fsproj    text eol=crlf
*.lsproj    text eol=crlf
*.wixproj   text eol=crlf
*.modelproj text eol=crlf
*.sqlproj   text eol=crlf
*.wmaproj   text eol=crlf

*.xproj     text eol=crlf
*.props     text eol=crlf
*.filters   text eol=crlf
*.vcxitems  text eol=crlf

# Extra Settings
*.dll       binary
*.lib       binary
*.exe       binary