-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
118 lines (102 loc) · 2.7 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
###############################
# Git Line Endings #
###############################
# Default normalize line endings to LF on checkin and
# prevent conversion to CRLF when the file is checked out.
* text eol=lf
# Exceptions to default EOL handling
*.{cmd,[cC][mM][dD]} text eol=crlf
*.{bat,[bB][aA][tT]} text eol=crlf
*.ps1 text eol=crlf
# Diff Helpers
*.htm text diff=html
*.html text diff=html
*.php text diff=php
*.py text diff=python
*.rb text diff=ruby
*.scss text diff=css
*.xhtml text diff=html
# Disable diff
*.lock text -diff
*.map text -diff
package-lock.json text -diff
###############################
# LFS support (optional) #
###############################
# If using, best to do it at beginning
# of a project before any LFS files added.
# Macro for files that should use Git LFS.
#[attr]lfs -text filter=lfs diff=lfs merge=lfs
###############################
# Binary
###############################
# Explicit examples here as a convenience
# if LFS were to be used. In that case,
# would switch from 'binary' to 'lfs'.
# 3D
*.glb binary
# Graphics
*.ai binary
*.bmp binary
*.eps binary
*.gif binary
*.gifv binary
*.ico binary
*.jng binary
*.jp2 binary
*.jpg binary
*.jpeg binary
*.jpx binary
*.jxr binary
*.pdf binary
*.png binary
*.psb binary
*.psd binary
# *.svg binary
*.svgz binary
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary
# Audio
*.kar binary
*.m4a binary
*.mid binary
*.midi binary
*.mp3 binary
*.ogg binary
*.ra binary
# Video
*.3gpp binary
*.3gp binary
*.as binary
*.asf binary
*.asx binary
*.fla binary
*.flv binary
*.m4v binary
*.mng binary
*.mov binary
*.mp4 binary
*.mpeg binary
*.mpg binary
*.ogv binary
*.swc binary
*.swf binary
*.webm binary
# Archives
*.7z binary
*.gz binary
*.jar binary
*.rar binary
*.tar binary
*.zip binary
# Fonts
*.ttf binary
*.eot binary
*.otf binary
*.woff binary
*.woff2 binary
# Executables
*.exe binary
*.pyc binary