-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
.gitattributes
51 lines (40 loc) · 820 Bytes
/
.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
# 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
*.fs text=auto diff=fsharp
*.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