-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
79 lines (75 loc) · 1.24 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
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto
# Force the following filetypes to have unix eols, so Windows does not break them
*.* text eol=lf
# Windows forced line-endings
/.idea/* text eol=crlf
#
## Binary files should be left untouched
#
# (binary is a macro for -text -diff)
# images
*.ai binary
*.apng binary
*.avif binary
*.cur binary
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.psd binary
*.webp binary
*.svgz binary
# media:
*.mov binary
*.mp4 binary
*.mp3 binary
*.wav binary
*.avi binary
# outdated flash:
*.flv binary
*.fla binary
*.swf binary
# archives (https://en.wikipedia.org/wiki/List_of_archive_formats):
*.7z binary
*.bz2 binary
*.gz binary
*.lz binary
*.lz4 binary
*.lzma binary
*.lzo binary
*.rar binary
*.rz binary
*.sfark binary
*.sz binary
*.tar binary
*.tgz binary
*.xz binary
*.z binary
*.zst binary
*.zip binary
# font-files:files
*.ttf binary
*.eot binary
*.woff binary
*.woff2 binary
*.otf binary
# misc.:
*.pyc binary
*.pdf binary
*.ez binary
*.swp binary
*.sqlite
# OPTIONAL: add office documents:
*.docx binary
*.doc binary
*.xlsx binary
*.xls binary
*.odb binary
*.odf binary
*.odg binary
*.odp binary
*.ods binary
*.odt binary