-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
444 lines (402 loc) · 15.8 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
###############################################################################
# Git Line Endings
###############################################################################
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto eol=lf encoding=UTF-8
###############################################################################
# Force ASP.NET Web Page files to always use CRLF line endings.
###############################################################################
*.asp text eol=crlf encoding=UTF-8
*.aspx text eol=crlf encoding=UTF-8
*.cshtm text eol=crlf encoding=UTF-8
*.cshtml text eol=crlf encoding=UTF-8
*.razor text eol=crlf encoding=UTF-8
*.vbhtm text eol=crlf encoding=UTF-8
*.vbhtml text eol=crlf encoding=UTF-8
###############################################################################
# Force Visual Studio Project & Solution files to always use CRLF line endings.
###############################################################################
*.asaproj text eol=crlf encoding=UTF-8
*.asaproj.* text eol=crlf encoding=UTF-8
*.ccproj text eol=crlf encoding=UTF-8
*.ccproj.* text eol=crlf encoding=UTF-8
*.csproj text eol=crlf encoding=UTF-8
*.csproj.* text eol=crlf encoding=UTF-8
*.dbproj text eol=crlf encoding=UTF-8
*.dbproj.* text eol=crlf encoding=UTF-8
*.dcproj text eol=crlf encoding=UTF-8
*.dcproj.* text eol=crlf encoding=UTF-8
*.deployproj text eol=crlf encoding=UTF-8
*.deployproj.* text eol=crlf encoding=UTF-8
*.edgeproj text eol=crlf encoding=UTF-8
*.edgeproj.* text eol=crlf encoding=UTF-8
*.esproj text eol=crlf encoding=UTF-8
*.esproj.* text eol=crlf encoding=UTF-8
*.fsproj text eol=crlf encoding=UTF-8
*.fsproj.* text eol=crlf encoding=UTF-8
*.hiveproj text eol=crlf encoding=UTF-8
*.hiveproj.* text eol=crlf encoding=UTF-8
*.lsproj text eol=crlf encoding=UTF-8
*.lsproj.* text eol=crlf encoding=UTF-8
*.modelproj text eol=crlf encoding=UTF-8
*.modelproj.* text eol=crlf encoding=UTF-8
*.msbuildproj text eol=crlf encoding=UTF-8
*.msbuildproj.* text eol=crlf encoding=UTF-8
*.njsproj text eol=crlf encoding=UTF-8
*.njsproj.* text eol=crlf encoding=UTF-8
*.pigproj text eol=crlf encoding=UTF-8
*.pigproj.* text eol=crlf encoding=UTF-8
*.proj text eol=crlf encoding=UTF-8
*.proj.* text eol=crlf encoding=UTF-8
*.projitems text eol=crlf encoding=UTF-8
*.projitems.* text eol=crlf encoding=UTF-8
*.sfproj text eol=crlf encoding=UTF-8
*.sfproj.* text eol=crlf encoding=UTF-8
*.shproj text eol=crlf encoding=UTF-8
*.shproj.* text eol=crlf encoding=UTF-8
*.sqlproj text eol=crlf encoding=UTF-8
*.sqlproj.* text eol=crlf encoding=UTF-8
*.vbproj text eol=crlf encoding=UTF-8
*.vbproj.* text eol=crlf encoding=UTF-8
*.vcproj text eol=crlf encoding=UTF-8
*.vcproj.* text eol=crlf encoding=UTF-8
*.vcxitems text eol=crlf encoding=UTF-8
*.vcxitems.* text eol=crlf encoding=UTF-8
*.vcxproj text eol=crlf encoding=UTF-8
*.vcxproj.* text eol=crlf encoding=UTF-8
*.vcxproj.filters text eol=crlf encoding=UTF-8
*.usqldbproj text eol=crlf encoding=UTF-8
*.usqldbproj.* text eol=crlf encoding=UTF-8
*.usqlproj text eol=crlf encoding=UTF-8
*.usqlproj.* text eol=crlf encoding=UTF-8
*.usqlutproj text eol=crlf encoding=UTF-8
*.usqlutproj.* text eol=crlf encoding=UTF-8
*.wapproj text eol=crlf encoding=UTF-8
*.wapproj.* text eol=crlf encoding=UTF-8
*.wixproj text eol=crlf encoding=UTF-8
*.wixproj.* text eol=crlf encoding=UTF-8
*.wwaproj text eol=crlf encoding=UTF-8
*.wwaproj.* text eol=crlf encoding=UTF-8
*.xproj text eol=crlf encoding=UTF-8
*.xproj.* text eol=crlf encoding=UTF-8
*.sln text eol=crlf encoding=UTF-8
*.slnf text eol=crlf encoding=UTF-8
###############################################################################
# Force windows script and config files to always use CRLF line endings so that
# if a repo is accessed in Windows via a file share from Linux, the scripts
# will work.
###############################################################################
*.[bB][aA][tT] text eol=crlf
*.[cC][mM][dD] text eol=crlf
*.[cC][oO][mM] text eol=crlf
*.[pP][sS]1 text eol=crlf
*.[wW][sS][lL][cC][oO][nN][fF][iI][gG] text eol=crlf
###############################################################################
# Force linux script and config files to always use LF line endings so that if
# a repo is accessed in Unix via a file share from Windows, the scripts will
# work.
###############################################################################
*.[bB][aA][sS][hH] text eol=lf
*.[cC][oO][nN][fF] text eol=lf
*.[sS][hH] text eol=lf
*.[zZ][sS][hH] text eol=lf
###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
#
# Note: This is only used by command line.
###############################################################################
#*.cs text diff=csharp
###############################################################################
# Set the merge driver for project and solution files.
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below.
###############################################################################
#*.asaproj merge=binary
#*.ccproj merge=binary
#*.csproj merge=binary
#*.dbproj merge=binary
#*.dcproj merge=binary
#*.deployproj merge=binary
#*.edgeproj merge=binary
#*.esproj merge=binary
#*.fsproj merge=binary
#*.hiveproj merge=binary
#*.lsproj merge=binary
#*.modelproj merge=binary
#*.msbuildproj merge=binary
#*.njsproj merge=binary
#*.pigproj merge=binary
#*.proj merge=binary
#*.projitems merge=binary
#*.sfproj merge=binary
#*.shproj merge=binary
#*.sqlproj merge=binary
#*.vbproj merge=binary
#*.vcproj merge=binary
#*.vcxitems merge=binary
#*.vcxproj merge=binary
#*.vcxproj.filters merge=binary
#*.usqldbproj merge=binary
#*.usqlproj merge=binary
#*.usqlutproj merge=binary
#*.wapproj merge=binary
#*.wixproj merge=binary
#*.wwaproj merge=binary
#*.xproj merge=binary
#*.sln merge=binary
#*.slnf merge=binary
###############################################################################
# Behavior for image files.
#
# Image files are treated as binary by default.
###############################################################################
##### 2D Images
#*.[aA][iI] binary
#*.[bB][mM][pP] binary
#*.[dD][dD][sS] binary
#*.[eE][xX][rR] binary
#*.[gG][iI][fF] binary
#*.[hH][dD][rR] binary
#*.[iI][cC][oO] binary
#*.[iI][fF][fF] binary
#*.[jJ][pP][eE][gG] binary
#*.[jJ][pP][gG] binary
#*.[pP][iI][cC][tT] binary
#*.[pP][nN][gG] binary
#*.[pP][sS][dD] binary
#*.[tT][gG][aA] binary
#*.[tT][iI][fF] binary
#*.[tT][iI][fF][fF] binary
#*.[wW][eE][bB][pP] binary
##### 3D Images
#*.3[dD][mM] binary
#*.3[dD][sS] binary
#*.[aA][bB][cC] binary
#*.[bB][lL][eE][nN][dD] binary
#*.[cC]4[dD] binary
#*.[cC][oO][lL][lL][aA][dD][aA] binary
#*.[dD][aA][eE] binary
#*.[dD][xX][fF] binary
#*.[fF][bB][xX] binary
#*.[jJ][aA][sS] binary
#*.[lL][wW][oO] binary
#*.[lL][wW][oO]2 binary
#*.[lL][wW][sS] binary
#*.[lL][xX][oO] binary
#*.[mM][aA] binary
#*.[mM][aA][xX] binary
#*.[mM][bB] binary
#*.[oO][bB][jJ] binary
#*.[pP][lL][yY] binary
#*.[sS][kK][pP] binary
#*.[sS][tT][lL] binary
#*.[zZ][tT][lL] binary
###############################################################################
# Behavior for audio files.
#
# Audio files are treated as binary by default.
###############################################################################
#*.[aA][aA][cC] binary
#*.[aA][iI][fF] binary
#*.[aA][iI][fF][fF] binary
#*.[aA][mM][rR] binary
#*.[bB][aA][nN][kK] binary
#*.[iI][tT] binary
#*.[mM][iI][dD] binary
#*.[mM][iI][dD][iI] binary
#*.[mM][oO][dD] binary
#*.[mM][pP]3 binary
#*.[oO][gG][gG] binary
#*.[sS]3[mM] binary
#*.[wW][aA][vV] binary
#*.[wW][eE][bB][aA] binary
#*.[xX][mM] binary
###############################################################################
# Behavior for video files.
#
# Video files are treated as binary by default.
###############################################################################
#*.[aA][sS][fF] binary
#*.[aA][vV][iI] binary
#*.[fF][lL][vV] binary
#*.[mM][kK][vV] binary
#*.[mM][oO][vV] binary
#*.[mM][pP]4 binary
#*.[mM][pP][eE][gG] binary
#*.[mM][pP][gG] binary
#*.[oO][gG][vV] binary
#*.[vV][oO][bB] binary
#*.[wW][eE][bB][mM] binary
#*.[wW][mM][vV] binary
###############################################################################
# Behavior for archive files.
#
# Archive files are treated as binary by default.
###############################################################################
#*.7[zZ] binary
#*.[bB][rR] binary
#*.[bB][zZ]2 binary
#*.[gG][zZ] binary
#*.[rR][aA][rR] binary
#*.[tT][aA][rR] binary
#*.[tT][aA][rR].[gG][zZ] binary
#*.[zZ][iI][pP] binary
###############################################################################
# Behavior for build files.
#
# Build files are treated as binary by default.
###############################################################################
#*.[aA][pP][pP][xX] binary
#*.[dD][lL][lL] binary
#*.[eE][xX][eE] binary
#*.[mM][dD][bB] binary
#*.[mM][sS][iI] binary
#*.[mM][sS][iI][xX] binary
#*.[pP][dD][bB] binary
#*.[sS][oO] binary
###############################################################################
# Behavior for document files.
#
# Document files are treated as binary by default.
###############################################################################
#*.[dD][jJ][vV] binary
#*.[dD][jJ][vV][uU] binary
#*.[eE][pP][uU][bB] binary
#*.[fF][bB]2 binary
#*.[mM][oO][bB][iI] binary
#*.[pP][dD][fF] binary
###############################################################################
# Behavior for font files.
#
# Font files are treated as binary by default.
###############################################################################
#*.[eE][oO][tT] binary
#*.[oO][tT][fF] binary
#*.[tT][tT][fF] binary
#*.[wW][oO][fF][fF] binary
#*.[wW][oO][fF][fF]2 binary
###############################################################################
# Diff behavior for common document formats.
#
# Convert binary document formats to text before diffing them. This feature is
# only available from the command line. Turn it on by uncommenting the entries
# below.
###############################################################################
#*.[dD][oO][cC] diff=astextplain
#*.[dD][oO][cC][xX] diff=astextplain
#*.[dD][oO][tT] diff=astextplain
#*.[rR][tT][fF] diff=astextplain
###############################################################################
# Git Large File System (LFS)
###############################################################################
##### 2D Images
#*.[aA][iI] filter=lfs diff=lfs merge=lfs -text
#*.[bB][mM][pP] filter=lfs diff=lfs merge=lfs -text
#*.[dD][dD][sS] filter=lfs diff=lfs merge=lfs -text
#*.[eE][xX][rR] filter=lfs diff=lfs merge=lfs -text
#*.[gG][iI][fF] filter=lfs diff=lfs merge=lfs -text
#*.[hH][dD][rR] filter=lfs diff=lfs merge=lfs -text
#*.[iI][cC][oO] filter=lfs diff=lfs merge=lfs -text
#*.[iI][fF][fF] filter=lfs diff=lfs merge=lfs -text
#*.[jJ][pP][eE][gG] filter=lfs diff=lfs merge=lfs -text
#*.[jJ][pP][gG] filter=lfs diff=lfs merge=lfs -text
#*.[pP][iI][cC][tT] filter=lfs diff=lfs merge=lfs -text
#*.[pP][nN][gG] filter=lfs diff=lfs merge=lfs -text
#*.[pP][sS][dD] filter=lfs diff=lfs merge=lfs -text
#*.[tT][gG][aA] filter=lfs diff=lfs merge=lfs -text
#*.[tT][iI][fF] filter=lfs diff=lfs merge=lfs -text
#*.[tT][iI][fF][fF] filter=lfs diff=lfs merge=lfs -text
#*.[wW][eE][bB][pP] filter=lfs diff=lfs merge=lfs -text
##### 3D Images
#*.3[dD][mM] filter=lfs diff=lfs merge=lfs -text
#*.3[dD][sS] filter=lfs diff=lfs merge=lfs -text
#*.[aA][bB][cC] filter=lfs diff=lfs merge=lfs -text
#*.[bB][lL][eE][nN][dD] filter=lfs diff=lfs merge=lfs -text
#*.[cC]4[dD] filter=lfs diff=lfs merge=lfs -text
#*.[cC][oO][lL][lL][aA][dD][aA] filter=lfs diff=lfs merge=lfs -text
#*.[dD][aA][eE] filter=lfs diff=lfs merge=lfs -text
#*.[dD][xX][fF] filter=lfs diff=lfs merge=lfs -text
#*.[fF][bB][xX] filter=lfs diff=lfs merge=lfs -text
#*.[jJ][aA][sS] filter=lfs diff=lfs merge=lfs -text
#*.[lL][wW][oO] filter=lfs diff=lfs merge=lfs -text
#*.[lL][wW][oO]2 filter=lfs diff=lfs merge=lfs -text
#*.[lL][wW][sS] filter=lfs diff=lfs merge=lfs -text
#*.[lL][xX][oO] filter=lfs diff=lfs merge=lfs -text
#*.[mM][aA] filter=lfs diff=lfs merge=lfs -text
#*.[mM][aA][xX] filter=lfs diff=lfs merge=lfs -text
#*.[mM][bB] filter=lfs diff=lfs merge=lfs -text
#*.[oO][bB][jJ] filter=lfs diff=lfs merge=lfs -text
#*.[pP][lL][yY] filter=lfs diff=lfs merge=lfs -text
#*.[sS][kK][pP] filter=lfs diff=lfs merge=lfs -text
#*.[sS][tT][lL] filter=lfs diff=lfs merge=lfs -text
#*.[zZ][tT][lL] filter=lfs diff=lfs merge=lfs -text
##### Archives
#*.7[zZ] filter=lfs diff=lfs merge=lfs -text
#*.[bB][rR] filter=lfs diff=lfs merge=lfs -text
#*.[bB][zZ]2 filter=lfs diff=lfs merge=lfs -text
#*.[gG][zZ] filter=lfs diff=lfs merge=lfs -text
#*.[rR][aA][rR] filter=lfs diff=lfs merge=lfs -text
#*.[tT][aA][rR] filter=lfs diff=lfs merge=lfs -text
#*.[tT][aA][rR].[gG][zZ] filter=lfs diff=lfs merge=lfs -text
#*.[zZ][iI][pP] filter=lfs diff=lfs merge=lfs -text
##### Audios
#*.[aA][aA][cC] filter=lfs diff=lfs merge=lfs -text
#*.[aA][iI][fF] filter=lfs diff=lfs merge=lfs -text
#*.[aA][iI][fF][fF] filter=lfs diff=lfs merge=lfs -text
#*.[aA][mM][rR] filter=lfs diff=lfs merge=lfs -text
#*.[bB][aA][nN][kK] filter=lfs diff=lfs merge=lfs -text
#*.[iI][tT] filter=lfs diff=lfs merge=lfs -text
#*.[mM][iI][dD] filter=lfs diff=lfs merge=lfs -text
#*.[mM][iI][dD][iI] filter=lfs diff=lfs merge=lfs -text
#*.[mM][oO][dD] filter=lfs diff=lfs merge=lfs -text
#*.[mM][pP]3 filter=lfs diff=lfs merge=lfs -text
#*.[oO][gG][gG] filter=lfs diff=lfs merge=lfs -text
#*.[sS]3[mM] filter=lfs diff=lfs merge=lfs -text
#*.[wW][aA][vV] filter=lfs diff=lfs merge=lfs -text
#*.[wW][eE][bB][aA] filter=lfs diff=lfs merge=lfs -text
#*.[xX][mM] filter=lfs diff=lfs merge=lfs -text
##### Documents
#*.[dD][jJ][vV] filter=lfs diff=lfs merge=lfs -text
#*.[dD][jJ][vV][uU] filter=lfs diff=lfs merge=lfs -text
#*.[eE][pP][uU][bB] filter=lfs diff=lfs merge=lfs -text
#*.[fF][bB]2 filter=lfs diff=lfs merge=lfs -text
#*.[mM][oO][bB][iI] filter=lfs diff=lfs merge=lfs -text
#*.[pP][dD][fF] filter=lfs diff=lfs merge=lfs -text
##### Fonts
#*.[eE][oO][tT] filter=lfs diff=lfs merge=lfs -text
#*.[oO][tT][fF] filter=lfs diff=lfs merge=lfs -text
#*.[tT][tT][fF] filter=lfs diff=lfs merge=lfs -text
#*.[wW][oO][fF][fF] filter=lfs diff=lfs merge=lfs -text
#*.[wW][oO][fF][fF]2 filter=lfs diff=lfs merge=lfs -text
##### Other
#*.[aA][pP][pP][xX] filter=lfs diff=lfs merge=lfs -text
#*.[dD][lL][lL] filter=lfs diff=lfs merge=lfs -text
#*.[eE][xX][eE] filter=lfs diff=lfs merge=lfs -text
#*.[mM][dD][bB] filter=lfs diff=lfs merge=lfs -text
#*.[mM][sS][iI] filter=lfs diff=lfs merge=lfs -text
#*.[mM][sS][iI][xX] filter=lfs diff=lfs merge=lfs -text
#*.[pP][dD][bB] filter=lfs diff=lfs merge=lfs -text
#*.[sS][oO] filter=lfs diff=lfs merge=lfs -text
##### Video
#*.[aA][sS][fF] filter=lfs diff=lfs merge=lfs -text
#*.[aA][vV][iI] filter=lfs diff=lfs merge=lfs -text
#*.[fF][lL][vV] filter=lfs diff=lfs merge=lfs -text
#*.[mM][kK][vV] filter=lfs diff=lfs merge=lfs -text
#*.[mM][oO][vV] filter=lfs diff=lfs merge=lfs -text
#*.[mM][pP]4 filter=lfs diff=lfs merge=lfs -text
#*.[mM][pP][eE][gG] filter=lfs diff=lfs merge=lfs -text
#*.[mM][pP][gG] filter=lfs diff=lfs merge=lfs -text
#*.[oO][gG][vV] filter=lfs diff=lfs merge=lfs -text
#*.[vV][oO][bB] filter=lfs diff=lfs merge=lfs -text
#*.[wW][eE][bB][mM] filter=lfs diff=lfs merge=lfs -text
#*.[wW][mM][vV] filter=lfs diff=lfs merge=lfs -text