-
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy path.gitattributes
More file actions
58 lines (53 loc) · 1.73 KB
/
.gitattributes
File metadata and controls
58 lines (53 loc) · 1.73 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
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
###############################################################################
# Source code - normalize to LF in repo, native on checkout
###############################################################################
*.cs text diff=csharp
*.csx text diff=csharp
*.csproj text
*.sln text
*.slnx text
*.props text
*.targets text
*.json text
*.xml text
*.yml text
*.yaml text
*.md text
*.txt text
*.config text
*.editorconfig text
*.razor text
*.cshtml text
###############################################################################
# Shell scripts - always LF
###############################################################################
*.sh text eol=lf
*.bash text eol=lf
###############################################################################
# Windows scripts - always CRLF
###############################################################################
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
###############################################################################
# Verify snapshots - LF for consistent cross-platform diffs
###############################################################################
*.verified.txt text eol=lf
*.received.txt text eol=lf
###############################################################################
# Binary files - no normalization
###############################################################################
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.dll binary
*.exe binary
*.nupkg binary
*.snk binary
*.pfx binary