From f998189f367b1a54753c4ec49686776544269d01 Mon Sep 17 00:00:00 2001 From: Julien Date: Wed, 7 Dec 2016 09:04:36 +0800 Subject: Add .gitignore file for easier usage Change-Id: I284a4f87ddb1ab35f2d3cb67d0132c7792bfbbfb Signed-off-by: Julien --- .gitignore | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') 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/ + -- cgit 1.2.3-korg