-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitattributes
58 lines (46 loc) · 1.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
# Set default file-type attributes
# All file types
* text=auto
# Markups
*.md text=auto diff=markdown
*.mdx text=auto diff=markdown
# Solutions
*.sln text=auto eol=crlf
*.slnx text=auto
# Projects
*.*proj text=auto
*.tasks text=auto
*.props text=auto
*.targets text=auto
# Sources
*.cs text=auto diff=csharp
*.csx text=auto diff=csharp
*.resx text=auto
# Scripts
*.in text eol=lf
*.sh text eol=lf
*.bat text eol=crlf
*.cmd text eol=crlf
# Images
*.png binary
*.jpg binary
*.gif binary
# Keys
*.snk binary
*.pfx binary
*.cer binary
# Others
# Preserve Line endings in diff and patch files
*.diff -text
*.patch -text
# Exclude git meta files from exporting
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore
# Git LFS
*.exe filter=lfs diff=lfs merge=lfs -text
*.dll filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.svg filter=lfs diff=lfs merge=lfs -text
*.gif filter=lfs diff=lfs merge=lfs -text