-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
69 lines (64 loc) · 1.16 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
# Set default behaviour for text files, in case users don't have core.autocrlf set.
# This handles all files not specified.
* text=auto eol=lf
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.c text
*.h text
*.markdown text
*.md text
*.rb text
*.txt text
*.gitattributes text
*.css text
*.engine text diff=php
*.html text diff=html
*.inc text diff=php
*.info text
*.install text diff=php
*.readme text
*.js text
*.json text
*.lock text
*.module text diff=php
*.php text diff=php
*.po text
*.script text
*.sh text
*.pl text
*.perl text
*.cgi text
*.py text
*.sql text
*.test text
*.xml text
*.yml text
# Declare files that will always have CRLF line endings on checkout. From github.
*.sln text eol=crlf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.PNG binary
*.jpg binary
*.JPG binary
*.jpeg binary
*.JPEG binary
*.gif binary
*.GIF binary
*.gz binary
*.GZ binary
*.phar binary
*.PHAR binary
*.ico binary
*.ICO binary
*.icns binary
*.ICNS binary
*.woff binary
*.WOFF binary
*.ttf binary
*.TTF binary
*.svg binary
*.SVG binary
*.eot binary
*.EOT binary
*.otf binary
*.OTF binary