-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.gitattributes
71 lines (67 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
# Code files should have platform appropriate line endings.
# Do not force git to consider the files as text; there are some exotically encoded (eg. UCS-16)
# files lurking in our tree. The attribute text=auto will make git treat files as text whenever
# they look like text to it, which means strange files will not be touched.
*.cs text=auto eol=auto
*.cpp text=auto eol=auto
*.h text=auto eol=auto
*.H text=auto eol=auto
*.hpp text=auto eol=auto
*.c text=auto eol=auto
*.js text=auto eol=auto
*.kt text=auto eol=auto
*.kts text=auto eol=auto
*.html text=auto eol=auto
*.css text=auto eol=auto
*.ps1 text=auto eol=auto
*.psm1 text=auto eol=auto
*.java text=auto eol=auto
*.md text=auto eol=auto
*.nuspec text=auto eol=auto
*.py text=auto eol=auto
*.sh text=auto eol=auto
*.txt text=auto eol=auto
*.TXT text=auto eol=auto
*.xml text=auto eol=auto
*.XML text=auto eol=auto
*.xsl text=auto eol=auto
*.xslt text=auto eol=auto
*.yml text=auto eol=auto
*.tt text=auto eol=auto
*.proto text=auto eol=auto
*.ts text=auto eol=auto
*.cc text=auto eol=auto
*.rc text=auto eol=auto
*.resx text=auto eol=auto
*.config text=auto eol=auto
*.json text=auto eol=auto
*.peg text=auto eol=auto
*.idl text=auto eol=auto
*.wxs text=auto eol=auto
*.wxl text=auto eol=auto
*.vcxitems text=auto eol=auto
# Git configuration files. These really must be in a text format understood by git.
.gitignore text eol=auto
.gitattributes text eol=auto
.gitmodules text eol=auto
# Visual studio projects should always have CRLF endings.
*.*proj text=auto eol=crlf
*.props text=auto eol=crlf
*.properties text=auto eol=crlf
*.targets text=auto eol=crlf
*.sln text=auto eol=crlf
*.filters text=auto eol=crlf
# Bat files only run in windows environment, so they should always have CRLF endings.
*.bat text=auto eol=crlf
*.bat_ text=auto eol=crlf
# Disable delta compression for binary-like files.
*.jpg -delta
*.pdf -delta
*.bmp -delta
*.png -delta
*.dll -delta
*.pdb -delta
*.exe -delta
*.zip -delta
*.msi -delta
*.mfappx -delta