diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2017-03-11 01:26:29 +0800 |
---|---|---|
committer | shangxdy <shang.xiaodong@zte.com.cn> | 2017-03-11 01:26:29 +0800 |
commit | ea9d47bbd0a06d0cca1738f244ab8b30e57ed9c6 (patch) | |
tree | 9c529733b6768b6c9bab4ab179720bdfa80375b4 | |
parent | 61a6e142120e622eb74751c4ff1ba9fa9ffceba4 (diff) |
Add top level git ignore files
Add more git ignore files for convenient use before submit.
Change-Id: I133988323f8e1193efcde31cd6dd6c3f298c52d3
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
-rw-r--r-- | .gitignore | 63 |
1 files changed, 63 insertions, 0 deletions
@@ -3,3 +3,66 @@ /docs_build/ /docs_output/ /releng/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +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 +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.testrepository/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# misc files +AUTHORS +ChangeLog |