-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
57 lines (52 loc) · 1.57 KB
/
.gitattributes
File metadata and controls
57 lines (52 loc) · 1.57 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
# Default: let git decide whether a file is text and normalize to LF
# on commit, then check out with the platform-native line ending on
# Windows clones.
* text=auto
# Windows-toolchain files always need CRLF on disk on Windows. The
# cmd parser tolerates LF, but signtool, MSBuild, and several
# editors do not, so we pin these explicitly.
*.cmd text eol=crlf
*.bat text eol=crlf
*.ps1 text eol=crlf
*.psm1 text eol=crlf
*.psd1 text eol=crlf
*.cs text eol=crlf
# Unix-style files keep LF regardless of clone platform.
*.md text eol=lf
*.markdown text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.sh text eol=lf
.editorconfig text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
# Treat these as text without an extension.
LICENSE text eol=lf
CHANGELOG text eol=lf
CONTRIBUTING text eol=lf
SECURITY text eol=lf
# Binary blobs that should never be modified by git's normalization.
*.exe binary
*.dll binary
*.pdb binary
*.pfx binary
*.p12 binary
*.cer binary
*.crt binary
*.snk binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.zip binary
*.tar binary
*.tar.gz binary
*.7z binary
# Export-ignore: keep CI / dev-only files out of `git archive` zipballs.
.github/ export-ignore
scripts/tests/ export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.editorconfig export-ignore
build.ps1 export-ignore