diff options
author | 杨宇千 <crupest@outlook.com> | 2018-11-13 17:18:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-13 17:18:18 +0800 |
commit | 91dda866a0919f9e6cfb5e7857ac0466572d96d8 (patch) | |
tree | c3b5fc6afeb4dad0de65212d1dae38940706a58a /tools/cppmerge/.gitignore | |
parent | 92bec65a76b62bbbee56b44c3020171606bb8bbb (diff) | |
parent | 97c35edea2ca67a06ba66f124b94ea62f0519def (diff) | |
download | cru-91dda866a0919f9e6cfb5e7857ac0466572d96d8.tar.gz cru-91dda866a0919f9e6cfb5e7857ac0466572d96d8.tar.bz2 cru-91dda866a0919f9e6cfb5e7857ac0466572d96d8.zip |
Merge pull request #17 from crupest/cppmerge-init
Add c++ source merge tools.
Diffstat (limited to 'tools/cppmerge/.gitignore')
-rw-r--r-- | tools/cppmerge/.gitignore | 147 |
1 files changed, 147 insertions, 0 deletions
diff --git a/tools/cppmerge/.gitignore b/tools/cppmerge/.gitignore new file mode 100644 index 00000000..0b6b38d0 --- /dev/null +++ b/tools/cppmerge/.gitignore @@ -0,0 +1,147 @@ + +# Created by https://www.gitignore.io/api/python,visualstudiocode +# Edit at https://www.gitignore.io/?templates=python,visualstudiocode + +### Python ### +# 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/ +*.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 +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# 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/ + +### Python Patch ### +.venv/ + +### Python.VirtualEnv Stack ### +# Virtualenv +# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ +[Bb]in +[Ii]nclude +[Ll]ib +[Ll]ib64 +[Ll]ocal +[Ss]cripts +pyvenv.cfg +pip-selfcheck.json + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history + +# End of https://www.gitignore.io/api/python,visualstudiocode |