diff options
author | Julien <zhang.jun3g@zte.com.cn> | 2016-12-07 09:04:36 +0800 |
---|---|---|
committer | Julien <zhang.jun3g@zte.com.cn> | 2016-12-07 09:04:36 +0800 |
commit | f998189f367b1a54753c4ec49686776544269d01 (patch) | |
tree | c92601c1e6222240d5401598ad91426d8ffb1887 | |
parent | 53917cb499147b494fb488e945662535e01013a2 (diff) |
Add .gitignore file for easier usage
Change-Id: I284a4f87ddb1ab35f2d3cb67d0132c7792bfbbfb
Signed-off-by: Julien <zhang.jun3g@zte.com.cn>
-rw-r--r-- | .gitignore | 64 |
1 files changed, 64 insertions, 0 deletions
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/ + |