-
Notifications
You must be signed in to change notification settings - Fork 77
/
.gitattributes
53 lines (46 loc) · 1.03 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
# Auto detect text files and perform LF normalization
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
* text=auto encoding=UTF-8
#
# The above will handle all files NOT found below
#
#
## Binary files should be left untouched
#
*.bmp binary
*.gif binary
*.jpg binary
*.png binary
*.class binary
*.dll binary
*.ico binary
*.pfx binary
*.snk binary
*.exe binary
*.pdb binary
#
## Visual Studio
#
*.sln text eol=crlf merge=union
*.csproj text eol=crlf merge=union
*.vbproj text eol=crlf merge=union
#
## These files are text and should be normalized (Convert crlf => lf)
#
# source code
*.cs text diff=csharp
*.vb text
*.java text diff=java
*.resx text merge=union
*.html text diff=html
*.props text eol=crlf
*.xaml text
*.config text
# scripts
*.sh text eol=lf
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# documentation
*.md text
*.tt text