-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitattributes
82 lines (78 loc) · 1.86 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
72
73
74
75
76
77
78
79
80
81
# Set the default behavior, in case people don't have core.autocrlf set.
# Git will always convert line endings to LF on checkout. You should use
# this for files that must keep LF endings, even on Windows.
* text eol=lf
# ------------------------------------------------------------------------------
# All the files and directories that can be excluded from dist,
# we could have a more clean vendor/
#
# So when someone will install that package through with --prefer-dist option,
# all the files and directories listed in .gitattributes file will be excluded.
# This could have a big impact on big deployments and/or testing.
# ------------------------------------------------------------------------------
/tests export-ignore
/build export-ignore
/docs export-ignore
/build.xml export-ignore
/phpunit.xml export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.* export-ignore
/.scrutinizer.* export-ignore
/.editorconfig export-ignore
/.coveralls.* export-ignore
# Define binary file attributes.
# - Do not treat them as text.
# - Include binary diff in patches instead of "binary files differ."
*.pdf binary
*.mo binary
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.cr3 binary
*.CR3 binary
*.cr2 binary
*.rw2 binary
*.pef binary
*.png binary
*.heic binary
*.bmp binary
*.phar binary
*.zip binary
*.gz binary
*.otf binary
*.eot binary
*.svg binary
*.ttf binary
*.woff binary
*.woff2 binary
*.swf binary
*.ai binary
*.ico binary
*.cur binary
*.psd binary
*.webp binary
*.3rf binary
*.iiq binary
*.orf binary
*.nef binary
*.dng binary
*.cin binary
*.pfm binary
*.ani binary
*.wmf binary
*.emf binary
*.dpx binary
*.jp2 binary
*.jpm binary
*.pdn binary
*.dcm binary
*.xcf binary
*.mng binary
*.psb binary
*.pbm binary
*.exr binary
*.hdr binary
*.pgm binary
*.ppm binary