Browse Source

repo(git): add gitignore

Vo Van Nghia 2 years ago
commit
2fde486247
1 changed files with 646 additions and 0 deletions
  1. 646
    0
      .gitignore

+ 646
- 0
.gitignore View File

@@ -0,0 +1,646 @@
1
+
2
+### C++ ###
3
+# Prerequisites
4
+*.d
5
+
6
+# Compiled Object files
7
+*.slo
8
+*.lo
9
+*.o
10
+*.obj
11
+
12
+# Precompiled Headers
13
+*.gch
14
+*.pch
15
+
16
+# Compiled Dynamic libraries
17
+*.so
18
+*.dylib
19
+*.dll
20
+
21
+# Fortran module files
22
+*.mod
23
+*.smod
24
+
25
+# Compiled Static libraries
26
+*.lai
27
+*.la
28
+*.a
29
+*.lib
30
+
31
+# Executables
32
+*.exe
33
+*.out
34
+*.app
35
+
36
+### JupyterNotebooks ###
37
+# gitignore template for Jupyter Notebooks
38
+# website: http://jupyter.org/
39
+
40
+.ipynb_checkpoints
41
+*/.ipynb_checkpoints/*
42
+
43
+# IPython
44
+profile_default/
45
+ipython_config.py
46
+
47
+# Remove previous ipynb_checkpoints
48
+#   git rm -r .ipynb_checkpoints/
49
+
50
+### LaTeX ###
51
+## Core latex/pdflatex auxiliary files:
52
+*.aux
53
+*.lof
54
+*.log
55
+*.lot
56
+*.fls
57
+*.toc
58
+*.fmt
59
+*.fot
60
+*.cb
61
+*.cb2
62
+.*.lb
63
+
64
+## Intermediate documents:
65
+*.dvi
66
+*.xdv
67
+*-converted-to.*
68
+# these rules might exclude image files for figures etc.
69
+# *.ps
70
+# *.eps
71
+# *.pdf
72
+
73
+## Generated if empty string is given at "Please type another file name for output:"
74
+.pdf
75
+
76
+## Bibliography auxiliary files (bibtex/biblatex/biber):
77
+*.bbl
78
+*.bcf
79
+*.blg
80
+*-blx.aux
81
+*-blx.bib
82
+*.run.xml
83
+
84
+## Build tool auxiliary files:
85
+*.fdb_latexmk
86
+*.synctex
87
+*.synctex(busy)
88
+*.synctex.gz
89
+*.synctex.gz(busy)
90
+*.pdfsync
91
+
92
+## Build tool directories for auxiliary files
93
+# latexrun
94
+latex.out/
95
+
96
+## Auxiliary and intermediate files from other packages:
97
+# algorithms
98
+*.alg
99
+*.loa
100
+
101
+# achemso
102
+acs-*.bib
103
+
104
+# amsthm
105
+*.thm
106
+
107
+# beamer
108
+*.nav
109
+*.pre
110
+*.snm
111
+*.vrb
112
+
113
+# changes
114
+*.soc
115
+
116
+# comment
117
+*.cut
118
+
119
+# cprotect
120
+*.cpt
121
+
122
+# elsarticle (documentclass of Elsevier journals)
123
+*.spl
124
+
125
+# endnotes
126
+*.ent
127
+
128
+# fixme
129
+*.lox
130
+
131
+# feynmf/feynmp
132
+*.mf
133
+*.mp
134
+*.t[1-9]
135
+*.t[1-9][0-9]
136
+*.tfm
137
+
138
+#(r)(e)ledmac/(r)(e)ledpar
139
+*.end
140
+*.?end
141
+*.[1-9]
142
+*.[1-9][0-9]
143
+*.[1-9][0-9][0-9]
144
+*.[1-9]R
145
+*.[1-9][0-9]R
146
+*.[1-9][0-9][0-9]R
147
+*.eledsec[1-9]
148
+*.eledsec[1-9]R
149
+*.eledsec[1-9][0-9]
150
+*.eledsec[1-9][0-9]R
151
+*.eledsec[1-9][0-9][0-9]
152
+*.eledsec[1-9][0-9][0-9]R
153
+
154
+# glossaries
155
+*.acn
156
+*.acr
157
+*.glg
158
+*.glo
159
+*.gls
160
+*.glsdefs
161
+*.lzo
162
+*.lzs
163
+*.slg
164
+*.sls
165
+
166
+# uncomment this for glossaries-extra (will ignore makeindex's style files!)
167
+# *.ist
168
+
169
+# gnuplot
170
+*.gnuplot
171
+*.table
172
+
173
+# gnuplottex
174
+*-gnuplottex-*
175
+
176
+# gregoriotex
177
+*.gaux
178
+*.glog
179
+*.gtex
180
+
181
+# htlatex
182
+*.4ct
183
+*.4tc
184
+*.idv
185
+*.lg
186
+*.trc
187
+*.xref
188
+
189
+# hyperref
190
+*.brf
191
+
192
+# knitr
193
+*-concordance.tex
194
+# TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files
195
+# *.tikz
196
+*-tikzDictionary
197
+
198
+# listings
199
+*.lol
200
+
201
+# luatexja-ruby
202
+*.ltjruby
203
+
204
+# makeidx
205
+*.idx
206
+*.ilg
207
+*.ind
208
+
209
+# minitoc
210
+*.maf
211
+*.mlf
212
+*.mlt
213
+*.mtc[0-9]*
214
+*.slf[0-9]*
215
+*.slt[0-9]*
216
+*.stc[0-9]*
217
+
218
+# minted
219
+_minted*
220
+*.pyg
221
+
222
+# morewrites
223
+*.mw
224
+
225
+# newpax
226
+*.newpax
227
+
228
+# nomencl
229
+*.nlg
230
+*.nlo
231
+*.nls
232
+
233
+# pax
234
+*.pax
235
+
236
+# pdfpcnotes
237
+*.pdfpc
238
+
239
+# sagetex
240
+*.sagetex.sage
241
+*.sagetex.py
242
+*.sagetex.scmd
243
+
244
+# scrwfile
245
+*.wrt
246
+
247
+# svg
248
+svg-inkscape/
249
+
250
+# sympy
251
+*.sout
252
+*.sympy
253
+sympy-plots-for-*.tex/
254
+
255
+# pdfcomment
256
+*.upa
257
+*.upb
258
+
259
+# pythontex
260
+*.pytxcode
261
+pythontex-files-*/
262
+
263
+# tcolorbox
264
+*.listing
265
+
266
+# thmtools
267
+*.loe
268
+
269
+# TikZ & PGF
270
+*.dpth
271
+*.md5
272
+*.auxlock
273
+
274
+# titletoc
275
+*.ptc
276
+
277
+# todonotes
278
+*.tdo
279
+
280
+# vhistory
281
+*.hst
282
+*.ver
283
+
284
+# easy-todo
285
+*.lod
286
+
287
+# xcolor
288
+*.xcp
289
+
290
+# xmpincl
291
+*.xmpi
292
+
293
+# xindy
294
+*.xdy
295
+
296
+# xypic precompiled matrices and outlines
297
+*.xyc
298
+*.xyd
299
+
300
+# endfloat
301
+*.ttt
302
+*.fff
303
+
304
+# Latexian
305
+TSWLatexianTemp*
306
+
307
+## Editors:
308
+# WinEdt
309
+*.bak
310
+*.sav
311
+
312
+# Texpad
313
+.texpadtmp
314
+
315
+# LyX
316
+*.lyx~
317
+
318
+# Kile
319
+*.backup
320
+
321
+# gummi
322
+.*.swp
323
+
324
+# KBibTeX
325
+*~[0-9]*
326
+
327
+# TeXnicCenter
328
+*.tps
329
+
330
+# auto folder when using emacs and auctex
331
+./auto/*
332
+*.el
333
+
334
+# expex forward references with \gathertags
335
+*-tags.tex
336
+
337
+# standalone packages
338
+*.sta
339
+
340
+# Makeindex log files
341
+*.lpz
342
+
343
+# xwatermark package
344
+*.xwm
345
+
346
+# REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
347
+# option is specified. Footnotes are the stored in a file with suffix Notes.bib.
348
+# Uncomment the next line to have this generated file ignored.
349
+#*Notes.bib
350
+
351
+### LaTeX Patch ###
352
+# LIPIcs / OASIcs
353
+*.vtc
354
+
355
+# glossaries
356
+*.glstex
357
+
358
+### Linux ###
359
+*~
360
+
361
+# temporary files which can be created if a process still has a handle open of a deleted file
362
+.fuse_hidden*
363
+
364
+# KDE directory preferences
365
+.directory
366
+
367
+# Linux trash folder which might appear on any partition or disk
368
+.Trash-*
369
+
370
+# .nfs files are created when an open file is removed but is still being accessed
371
+.nfs*
372
+
373
+### macOS ###
374
+# General
375
+.DS_Store
376
+.AppleDouble
377
+.LSOverride
378
+
379
+# Icon must end with two \r
380
+Icon
381
+
382
+
383
+# Thumbnails
384
+._*
385
+
386
+# Files that might appear in the root of a volume
387
+.DocumentRevisions-V100
388
+.fseventsd
389
+.Spotlight-V100
390
+.TemporaryItems
391
+.Trashes
392
+.VolumeIcon.icns
393
+.com.apple.timemachine.donotpresent
394
+
395
+# Directories potentially created on remote AFP share
396
+.AppleDB
397
+.AppleDesktop
398
+Network Trash Folder
399
+Temporary Items
400
+.apdisk
401
+
402
+### Python ###
403
+# Byte-compiled / optimized / DLL files
404
+__pycache__/
405
+*.py[cod]
406
+*$py.class
407
+
408
+# C extensions
409
+
410
+# Distribution / packaging
411
+.Python
412
+build/
413
+develop-eggs/
414
+dist/
415
+downloads/
416
+eggs/
417
+.eggs/
418
+lib/
419
+lib64/
420
+parts/
421
+sdist/
422
+var/
423
+wheels/
424
+share/python-wheels/
425
+*.egg-info/
426
+.installed.cfg
427
+*.egg
428
+MANIFEST
429
+
430
+# PyInstaller
431
+#  Usually these files are written by a python script from a template
432
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
433
+*.manifest
434
+*.spec
435
+
436
+# Installer logs
437
+pip-log.txt
438
+pip-delete-this-directory.txt
439
+
440
+# Unit test / coverage reports
441
+htmlcov/
442
+.tox/
443
+.nox/
444
+.coverage
445
+.coverage.*
446
+.cache
447
+nosetests.xml
448
+coverage.xml
449
+*.cover
450
+*.py,cover
451
+.hypothesis/
452
+.pytest_cache/
453
+cover/
454
+
455
+# Translations
456
+*.mo
457
+*.pot
458
+
459
+# Django stuff:
460
+local_settings.py
461
+db.sqlite3
462
+db.sqlite3-journal
463
+
464
+# Flask stuff:
465
+instance/
466
+.webassets-cache
467
+
468
+# Scrapy stuff:
469
+.scrapy
470
+
471
+# Sphinx documentation
472
+docs/_build/
473
+
474
+# PyBuilder
475
+.pybuilder/
476
+target/
477
+
478
+# Jupyter Notebook
479
+
480
+# IPython
481
+
482
+# pyenv
483
+#   For a library or package, you might want to ignore these files since the code is
484
+#   intended to run in multiple environments; otherwise, check them in:
485
+# .python-version
486
+
487
+# pipenv
488
+#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
489
+#   However, in case of collaboration, if having platform-specific dependencies or dependencies
490
+#   having no cross-platform support, pipenv may install dependencies that don't work, or not
491
+#   install all needed dependencies.
492
+#Pipfile.lock
493
+
494
+# poetry
495
+#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
496
+#   This is especially recommended for binary packages to ensure reproducibility, and is more
497
+#   commonly ignored for libraries.
498
+#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
499
+#poetry.lock
500
+
501
+# PEP 582; used by e.g. github.com/David-OConnor/pyflow
502
+__pypackages__/
503
+
504
+# Celery stuff
505
+celerybeat-schedule
506
+celerybeat.pid
507
+
508
+# SageMath parsed files
509
+*.sage.py
510
+
511
+# Environments
512
+.env
513
+.venv
514
+env/
515
+venv/
516
+ENV/
517
+env.bak/
518
+venv.bak/
519
+
520
+# Spyder project settings
521
+.spyderproject
522
+.spyproject
523
+
524
+# Rope project settings
525
+.ropeproject
526
+
527
+# mkdocs documentation
528
+/site
529
+
530
+# mypy
531
+.mypy_cache/
532
+.dmypy.json
533
+dmypy.json
534
+
535
+# Pyre type checker
536
+.pyre/
537
+
538
+# pytype static type analyzer
539
+.pytype/
540
+
541
+# Cython debug symbols
542
+cython_debug/
543
+
544
+# PyCharm
545
+#  JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
546
+#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
547
+#  and can be added to the global gitignore or merged into this file.  For a more nuclear
548
+#  option (not recommended) you can uncomment the following to ignore the entire idea folder.
549
+#.idea/
550
+
551
+### R ###
552
+# History files
553
+.Rhistory
554
+.Rapp.history
555
+
556
+# Session Data files
557
+.RData
558
+.RDataTmp
559
+
560
+# User-specific files
561
+.Ruserdata
562
+
563
+# Example code in package build process
564
+*-Ex.R
565
+
566
+# Output files from R CMD build
567
+/*.tar.gz
568
+
569
+# Output files from R CMD check
570
+/*.Rcheck/
571
+
572
+# RStudio files
573
+.Rproj.user/
574
+
575
+# produced vignettes
576
+vignettes/*.html
577
+vignettes/*.pdf
578
+
579
+# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
580
+.httr-oauth
581
+
582
+# knitr and R markdown default cache directories
583
+*_cache/
584
+/cache/
585
+
586
+# Temporary files created by R markdown
587
+*.utf8.md
588
+*.knit.md
589
+
590
+# R Environment Variables
591
+.Renviron
592
+
593
+# pkgdown site
594
+docs/
595
+
596
+# translation temp files
597
+po/*~
598
+
599
+# RStudio Connect folder
600
+rsconnect/
601
+
602
+### R.Bookdown Stack ###
603
+# R package: bookdown caching files
604
+/*_files/
605
+
606
+### VisualStudioCode ###
607
+.vscode
608
+
609
+# Local History for Visual Studio Code
610
+.history/
611
+
612
+# Built Visual Studio Code Extensions
613
+*.vsix
614
+
615
+### VisualStudioCode Patch ###
616
+# Ignore all local history of files
617
+.history
618
+.ionide
619
+
620
+# Support for Project snippet scope
621
+
622
+### Windows ###
623
+# Windows thumbnail cache files
624
+Thumbs.db
625
+Thumbs.db:encryptable
626
+ehthumbs.db
627
+ehthumbs_vista.db
628
+
629
+# Dump file
630
+*.stackdump
631
+
632
+# Folder config file
633
+[Dd]esktop.ini
634
+
635
+# Recycle Bin used on file shares
636
+$RECYCLE.BIN/
637
+
638
+# Windows Installer files
639
+*.cab
640
+*.msi
641
+*.msix
642
+*.msm
643
+*.msp
644
+
645
+# Windows shortcuts
646
+*.lnk

Loading…
Cancel
Save