-
-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy path.gitattributes
More file actions
65 lines (58 loc) · 1.58 KB
/
Copy path.gitattributes
File metadata and controls
65 lines (58 loc) · 1.58 KB
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
# Auto-detect text files and force LF in the repository AND the working tree, on every
# platform. eol=lf is set explicitly on each pattern: a more specific line only overrides
# the attributes it names, and a bare `text` would otherwise fall back to core.autocrlf
# and check out CRLF on Windows.
* text=auto eol=lf
# Source code
*.cs text eol=lf diff=csharp
*.xaml text eol=lf
*.slnx text eol=lf
*.sln text eol=lf
*.csproj text eol=lf
*.props text eol=lf
*.targets text eol=lf
*.json text eol=lf
*.xml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.sh text eol=lf
*.ps1 text eol=lf
*.cmd text eol=lf
*.bat text eol=lf
*.config text eol=lf
*.editorconfig text eol=lf
# Binary files (do not normalise or diff). `binary` expands to `-text -diff`, which
# overrides the `* text=auto eol=lf` above. Every extension here previously carried
# `-text` only by virtue of its Git LFS line, so all of them must be listed explicitly
# now that LFS is gone, or `text=auto` would be left guessing.
# Images
*.png binary
*.jpg binary
*.gif binary
*.ico binary
*.bmp binary
*.webp binary
*.psd binary
# Fonts
*.ttf binary
*.otf binary
*.woff binary
*.woff2 binary
# Archives
*.zip binary
*.gz binary
*.7z binary
*.tar binary
# Compiled output and signing material
*.dll binary
*.exe binary
*.pdb binary
*.lib binary
*.so binary
*.winmd binary
*.pfx binary
*.snk binary
# Documents
*.pdf binary