forked from MeltwaterArchive/gitflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
169 lines (147 loc) · 2.12 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# Auto-Detect (Default)
* text=auto
# Text files.
*.md text
*.txt text
# Log files.
*.log text
# YAML files.
*.yml
# Property files.
*.properties text
# Translation files.
*.pot text
# SQL files.
*.sql text
*.sqlite text
# Template files.
*.tmpl text
*.tpl text
# Server config files.
*.admins text
*.cfg text
*.cnf text
*.conf text
*.htaccess text
*.htaccess-apache text
*.htpasswd text
*.ini text
# CSS/JavaScript files.
*.css text
*.js text
*.css.map text
*.js.map text
*.json text
# Applescript files.
*.applescript text
*.scpt binary
# PHP scripts/files.
*.inc text
*.php text
*.php4 text
*.php5 text
*.php6 text
*.phps text
*.x-php text
*.php~ text
# ASP scripts/files.
*.asp text
*.aspx text
# Perl scripts/files.
*.cgi text
*.pl text
# HTML/XML files.
*.dtd text
*.hta text
*.htc text
*.htm text
*.html text
*.shtml text
*.xhtml text
*.xml text
*.xsl text
*.xslt text
*.xsd text
# Document files.
*.csv text
*.doc binary
*.docx binary
*.odt binary
*.pdf binary
*.rtf binary
*.xls binary
# Image/animation files.
*.ai binary
*.blend binary
*.bmp binary
*.eps binary
*.fla binary
*.gif binary
*.ico binary
*.jpe binary
*.jpeg binary
*.jpg binary
*.png binary
*.psd binary
*.pspimage binary
*.svg text
*.swf binary
*.tif binary
*.tiff binary
# Audio files.
*.mid binary
*.midi binary
*.mp3 binary
*.wav binary
*.wma binary
# Video files.
*.avi binary
*.flv binary
*.ogg binary
*.ogv binary
*.mp4 binary
*.mov binary
*.mpg binary
*.mpeg binary
*.qt binary
*.webm binary
*.wmv binary
# Font files.
*.eot binary
*.otf binary
*.ttf binary
*.woff binary
# Archive files.
*.7z binary
*.dmg binary
*.gtar binary
*.gz binary
*.iso binary
*.jar binary
*.phar binary
*.rar binary
*.tar binary
*.tgz binary
*.zip binary
# Other misc files.
*.bat text
*.bash text
*.bin binary
*.class binary
*.com binary
*.dll binary
*.exe binary
*.sh text
*.so binary
# Archive ignores.
assets/ export-ignore
tests/ export-ignore
.git* export-ignore
.tags export-ignore
.post-receive export-ignore
.apigen.neon export-ignore
.travis.yml export-ignore
.coveralls.yml export-ignore
.scrutinizer.yml export-ignore
.build.properties export-ignore
.build.xml export-ignore