From: Julien Date: Wed, 7 Dec 2016 01:04:36 +0000 (+0800) Subject: Add .gitignore file for easier usage X-Git-Tag: 1.0.0~83^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F67%2F25567%2F1;p=daisy.git Add .gitignore file for easier usage Change-Id: I284a4f87ddb1ab35f2d3cb67d0132c7792bfbbfb Signed-off-by: Julien --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..078f1c9b --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# Normal for all project +*~ +.*.sw? +/docs_build/ +/docs_output/ +/releng/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*.confc + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +eggs/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# 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 +.tox/ +.coverage +.cache + +# Log files: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# SublimeText +*.sublime-project +*.sublime-workspace + +# macos preview +.DS_Store + +# PyCharm +.idea/ +