-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
506 lines (450 loc) · 10.4 KB
/
.gitignore
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock
# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Neo4J - https://github.com/neo4j-contrib/neo4j-org/blob/master/.gitignore
run.sh
setup.sh
views/ejs/*
.idea
*.iml
*.iws
*.ipr
.DS_Store
node_modules
*.esproj/
# MySQL - https://github.com/google/mysql/blob/master/.gitignore
*~
*.a
*.la
*.lo
*.o
*.so
*ib_doublewrite
*ib_logfile0
*ib_logfile1
*ibdata1
*.cmake
!/cmake/*.cmake
*CMakeFiles/
CMakeCache.txt
Makefile
.cproject
.deps
.metadata
.project
.settings
.*.swp
Docs/INFO_BIN
Testing/
VERSION.dep
client/async_example
client/decimal.c
client/link_sources
client/log_event.cc
client/log_event.h
client/log_event_old.cc
client/log_event_old.h
client/my_decimal.cc
client/my_decimal.h
client/my_user.c
client/mysql
client/mysql_plugin
client/mysql_priv.h
client/mysql_upgrade
client/mysqladmin
client/mysqlbinlog
client/mysqlcheck
client/mysqldump
client/mysqlimport
client/mysqlshow
client/mysqlslap
client/mysqltest
client/rpl_constants.h
client/rpl_record_old.cc
client/rpl_record_old.h
client/rpl_tblmap.cc
client/rpl_tblmap.h
client/rpl_utility.h
config.guess
config.log
config.status
config.sub
configure
dbug/dbug_analyze
dbug/dbug-t
dbug/example1.r
dbug/example2.r
dbug/example3.r
dbug/factorial
dbug/factorial.r
dbug/main.r
dbug/output1.r
dbug/output2.r
dbug/output3.r
dbug/output4.r
dbug/output5.r
dbug/tests
dbug/user.ps
dbug/user.t
extra/charset2html
extra/comp_err
extra/innochecksum
extra/my_print_defaults
extra/mysql_waitpid
extra/perror
extra/replace
extra/resolve_stack_dump
extra/resolveip
include/sql_state.h.tmp
include/config.h
include/config.h.in
include/link_sources
include/my_config.h
include/mysql_version.h
include/mysqld_ername.h
include/mysqld_ername.h.tmp
include/mysqld_error.h
include/mysqld_error.h.tmp
include/readline
include/sql_state.h
include/stamp-h1
install-sh
instance
log
log.tests
libmysql/libmysql_exports_file.cc
libmysql/libmysql_versions.ld
libmysql/libmysqlclient.so.18
libmysql/libmysqlclient.so.18.0.0
libmysql/libmysqlclient_r.so.18
libmysql/libmysqlclient_r.so.18.0.0
libmysql/mysqlclient_depends.c
libmysqld/examples/mysql_client_test_embedded
libmysqld/examples/mysql_embedded
libmysqld/examples/mysqltest_embedded
libmysqld/libmysqld.so.18
libmysqld/libmysqld_exports_file.cc
libmysqld/mysqlserver_depends.c
mysql-test/collections/default.release
mysql-test/collections/default.release.done
mysql-test/lib/My/SafeProcess/my_safe_process
mysql-test/mtr
mysql-test/mysql-test-run
mysql-test/var
mysys/thr_lock
pcre/CTestCustom.ctest
pcre/config.h
pcre/pcre.h
pcre/pcre_chartables.c
pcre/pcre_grep_test.sh
pcre/pcre_test.sh
pcre/pcregrep
pcre/pcretest
plugin/fulltext/.libs/
scripts/comp_sql
scripts/make_binary_distribution
scripts/make_sharedlib_distribution
scripts/msql2mysql
scripts/mysql_config
scripts/mysql_config.pl
scripts/mysql_convert_table_format
scripts/mysql_find_rows
scripts/mysql_fix_extensions
scripts/mysql_fix_privilege_tables
scripts/mysql_fix_privilege_tables.sql
scripts/mysql_fix_privilege_tables_sql.c
scripts/mysql_install_db
scripts/mysql_secure_installation
scripts/mysql_setpermission
scripts/mysql_zap
scripts/mysqlaccess
scripts/mysqlbug
scripts/mysqld_multi
scripts/mysqld_safe
scripts/mysqldumpslow
scripts/mysqlhotcopy
scripts/mytop
sql-bench/bench-count-distinct
sql-bench/bench-init.pl
sql-bench/compare-results
sql-bench/copy-db
sql-bench/crash-me
sql-bench/graph-compare-results
sql-bench/innotest1
sql-bench/innotest1a
sql-bench/innotest1b
sql-bench/innotest2
sql-bench/innotest2a
sql-bench/innotest2b
sql-bench/run-all-tests
sql-bench/server-cfg
sql-bench/test-ATIS
sql-bench/test-alter-table
sql-bench/test-big-tables
sql-bench/test-connect
sql-bench/test-create
sql-bench/test-insert
sql-bench/test-select
sql-bench/test-table-elimination
sql-bench/test-transactions
sql-bench/test-wisconsin
sql/.libs/
sql/client.c
sql/db.opt
sql/gen_lex_hash
sql/lex_hash.h
sql/link_sources
sql/mini_client_errors.c
sql/my_time.c
sql/my_user.c
sql/mysql_tzinfo_to_sql
sql/mysqld
sql/pack.c
sql/share/bulgarian/
sql/share/czech/
sql/share/danish/
sql/share/dutch/
sql/share/english/
sql/share/errmsg.sys
sql/share/estonian/
sql/share/french/
sql/share/german/
sql/share/greek/
sql/share/hungarian/
sql/share/italian/
sql/share/japanese-sjis/
sql/share/japanese/
sql/share/korean/
sql/share/mysql/
sql/share/norwegian-ny/
sql/share/norwegian/
sql/share/polish/
sql/share/portuguese/
sql/share/romanian/
sql/share/russian/
sql/share/serbian/
sql/share/slovak/
sql/share/spanish/
sql/share/swedish/
sql/share/ukrainian/
sql/sql_builtin.cc
sql/sql_yacc.cc
sql/sql_yacc.h
sql/sql_yacc.output
storage/blackhole/.libs/
storage/heap/hp_test1
storage/heap/hp_test2
storage/innobase/.libs/
storage/maria/aria_chk
storage/maria/aria_dump_log
storage/maria/aria_ftdump
storage/maria/aria_pack
storage/maria/aria_read_log
storage/maria/ma_rt_test
storage/maria/ma_sp_test
storage/maria/ma_test1
storage/maria/ma_test2
storage/maria/ma_test3
storage/maria/unittest/ma_control_file-t
storage/maria/unittest/ma_pagecache_consist_1k-t
storage/maria/unittest/ma_pagecache_consist_1kHC-t
storage/maria/unittest/ma_pagecache_consist_1kRD-t
storage/maria/unittest/ma_pagecache_consist_1kWR-t
storage/maria/unittest/ma_pagecache_consist_64k-t
storage/maria/unittest/ma_pagecache_consist_64kHC-t
storage/maria/unittest/ma_pagecache_consist_64kRD-t
storage/maria/unittest/ma_pagecache_consist_64kWR-t
storage/maria/unittest/ma_pagecache_rwconsist2_1k-t
storage/maria/unittest/ma_pagecache_rwconsist_1k-t
storage/maria/unittest/ma_pagecache_single_1k-t
storage/maria/unittest/ma_pagecache_single_64k-t
storage/maria/unittest/ma_pagecache_single_8k-t
storage/maria/unittest/ma_test_loghandler-t
storage/maria/unittest/ma_test_loghandler_first_lsn-t
storage/maria/unittest/ma_test_loghandler_long-t
storage/maria/unittest/ma_test_loghandler_max_lsn-t
storage/maria/unittest/ma_test_loghandler_multigroup-t
storage/maria/unittest/ma_test_loghandler_multithread-t
storage/maria/unittest/ma_test_loghandler_noflush-t
storage/maria/unittest/ma_test_loghandler_nologs-t
storage/maria/unittest/ma_test_loghandler_pagecache-t
storage/maria/unittest/ma_test_loghandler_purge-t
storage/maria/unittest/ma_test_loghandler_readonly-t
storage/maria/unittest/trnman-t
storage/myisam/mi_test1
storage/myisam/mi_test2
storage/myisam/mi_test3
storage/myisam/mi_test_all
storage/myisam/myisam_ftdump
storage/myisam/myisamchk
storage/myisam/myisamlog
storage/myisam/myisampack
storage/myisam/rt_test
storage/myisam/sp_test
storage/perfschema/gen_pfs_lex_token
storage/perfschema/pfs_lex_token.h
storage/perfschema/unittest/pfs-t
storage/perfschema/unittest/pfs_account-oom-t
storage/perfschema/unittest/pfs_host-oom-t
storage/perfschema/unittest/pfs_instr-oom-t
storage/perfschema/unittest/pfs_instr-t
storage/perfschema/unittest/pfs_instr_class-oom-t
storage/perfschema/unittest/pfs_instr_class-t
storage/perfschema/unittest/pfs_user-oom-t
strings/conf_to_src
tests/bug25714
tests/insert_test
tests/mysql_client_test
tests/proxy_user_test
tests/select_test
tests/thread_test
unittest/examples/no_plan-t
unittest/examples/simple-t
unittest/examples/skip-t
unittest/examples/skip_all-t
unittest/examples/todo-t
unittest/my_decimal/my_decimal-t
unittest/mysys/base64-t
unittest/mysys/bitmap-t
unittest/mysys/explain_filename-t
unittest/mysys/lf-t
unittest/mysys/ma_dyncol-t
unittest/mysys/my_atomic-t
unittest/mysys/my_malloc-t
unittest/mysys/my_rdtsc-t
unittest/mysys/my_vsnprintf-t
unittest/mytap/t/basic-t
unittest/sql/explain_filename-t
unittest/sql/my_apc-t
unittest/sql/sniper_modules-t
unittest/strings/strings-t
# venv
python_venv