forked from electronicarts/CnC_Generals_Zero_Hour
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
276 lines (254 loc) · 8.06 KB
/
.gitattributes
File metadata and controls
276 lines (254 loc) · 8.06 KB
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
# Auto-detect text files
* text=auto
# Text files where line endings should be preserved
*.patch -text
*.diff -text
# ---------- Git related files ----------
*.gitignore text eol=lf
*.gitattributes text eol=lf
*.gitkeep text eol=lf
*.editorconfig text eol=lf
*.clang-format text eol=lf
*.clang-tidy text eol=lf
# ---------- C/C++ Sources ----------
*.c text eol=lf diff=cpp
*.cc text eol=lf diff=cpp
*.cxx text eol=lf diff=cpp
*.cpp text eol=lf diff=cpp
*.cpi text eol=lf diff=cpp
*.c++ text eol=lf diff=cpp
*.hpp text eol=lf diff=cpp
*.h text eol=lf diff=cpp
*.h++ text eol=lf diff=cpp
*.hh text eol=lf diff=cpp
*.ixx text eol=lf diff=cpp
*.inl text eol=lf diff=cpp
*.tbl text eol=lf diff=cpp
*.tcc text eol=lf diff=cpp
*.mpp text eol=lf diff=cpp
*.cppm text eol=lf diff=cpp
*.def text eol=crlf
*.rc text eol=crlf
*.rc2 text eol=crlf
*.idl text eol=crlf
*.odl text eol=crlf
*.tlh text eol=crlf
*.tli text eol=crlf
*.hm text eol=crlf
# ---------- Shader sources ----------
*.nvv text eol=lf
*.nvp text eol=lf
*.psh text eol=lf
*.vsh text eol=lf
# ---------- Lua sources ----------
*.lua text eol=lf
# ---------- Python sources ----------
*.pxd text eol=lf diff=python
*.py text eol=lf diff=python
*.py[3wxzi] text eol=lf diff=python
# ---------- Perl sources ----------
*.pl text eol=lf
# ---------- Visual Studio projects ----------
*.dsp text eol=crlf
*.dsw text eol=crlf
*.sln text eol=crlf
*.props text eol=crlf
*.targets text eol=crlf
*.filters text eol=crlf
*.vcxitems text eol=crlf
*.*proj text eol=crlf
# ---------- Text Editors ----------
*.vim text eol=lf
.vimrc text eol=lf
.gvimrc text eol=lf
# ---------- Scripting ----------
*.bash text eol=lf
*.fish text eol=lf
*.ksh text eol=lf
*.sh text eol=lf
*.zsh text eol=lf
# (These are explicitly windows files and should use crlf)
*.ps1 text eol=crlf
*.ps1x text eol=crlf
*.psm1 text eol=crlf
*.psd1 text eol=crlf
*.ps1xml text eol=crlf
*.pssc text eol=crlf
*.psrc text eol=crlf
*.cdxml text eol=crlf
*.bat text eol=crlf
*.cmd text eol=crlf
*.dbgcmd text eol=crlf
*.reg text eol=crlf
# Serialisation
*.ini text eol=lf
*.toml text eol=lf
*.xml text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
# (Fix syntax highlighting on GitHub to allow comments)
*.jsonc text eol=lf
*.cjson text eol=lf
.vscode/*.json text eol=lf
devcontainer.json text eol=lf
.devcontainer.json text eol=lf
# ---------- Documents ----------
*.bibtex text eol=lf diff=bibtex
*.doc diff=astextplain
*.docx diff=astextplain
*.dot diff=astextplain
*.pdf diff=astextplain
*.rtf diff=astextplain
*.epub diff=astextplain
*.md text eol=lf diff=markdown linguist-detectable
*.mdx text eol=lf diff=markdown
*.css text eol=lf diff=css
*.scss text eol=lf diff=css
*.htm text eol=lf diff=html
*.html text eol=lf diff=html
*.xhtml text eol=lf diff=html
*.tex text eol=lf diff=tex
*.svg text eol=lf
*.adoc text eol=lf
*.textile text eol=lf
*.mustache text eol=lf
*.tab text eol=lf
*.tsv text eol=lf
*.txt text eol=lf
*.sql text eol=lf
*.log text eol=lf
*.str text eol=lf
*.dox text eol=lf
*.ipynb text eol=lf
*.csv text eol=crlf
# ---------- Build systems ----------
meson.build text eol=lf
*.cmake text eol=lf
*.ninja text eol=lf
*.mk text eol=lf
*.mak text eol=lf
*[Mm]akefile text eol=lf
*[Gg]nu[Mm]akefile text eol=lf
# ---------- Project-specific ----------
*.vdf text eol=lf
*.wnd text eol=lf
################# BINARIES #################
# ---------- Project-specific ----------
*.map binary
*.wak binary
*.csf binary
*.dat binary
*.scb binary
*.sec binary
*.xlt binary
# ---------- Objects / Binaries ----------
*.slo binary
*.lo binary
*.o binary
*.obj binary
*.gch binary
*.pch binary
*.so binary
*.dylib binary
*.dll binary
*.lai binary
*.la binary
*.a binary
*.lib binary
*.exe binary
*.out binary
*.app binary
*.res binary
*.sbr binary
*.aps binary
*.pdb binary
*.ilk binary
*.exp binary
*.ncb binary
*.opt binary
*.plg binary
*.idb binary
*.tlb binary
# ---------- Archives ----------
*.z binary
*.7z binary
*.bz binary
*.bz2 binary
*.bzip2 binary
*.[glx]z binary
*.lzma binary
*.rar binary
*.tar binary
*.t[abglx]z binary
*.tbz2 binary
*.zip binary
*.zst binary
*.big binary
# ---------- Video ----------
*.3gpp binary
*.3gp binary
*.as binary
*.asf binary
*.asx binary
*.avi 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
*.bnk binary
*.bik binary
# ---------- Graphics ----------
*.ai binary
*.bmp binary
*.eps binary
*.gif binary
*.gifv binary
*.ico binary
*.cur binary
*.ani binary
*.jng binary
*.jp2 binary
*.jpg binary
*.jpeg binary
*.jpx binary
*.jxr binary
*.png binary
*.psb binary
*.psd binary
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary
*.tga binary
*.dds binary
*.w3d binary
*.pso binary
*.vso binary
*.svgz binary
# ---------- Audio ----------
*.kar binary
*.m4a binary
*.mid binary
*.midi binary
*.mp3 binary
*.ogg binary
*.ra binary
*.wav binary
*.m3d binary
*.asi binary
*.flt binary
# ---------- Fonts ----------
*.ttf binary
*.eot binary
*.otf binary
*.woff binary
*.woff2 binary