[TrivialFix] Add three kinds of ignorable file to .gitignore

The files '.project', '.pydevproject' and derectory '.ropeproject' are
autogenerated by different IDE tools and they have nothing to do with
released code, so they should be ignored when commiting the modified
code.

According my experience, these three files are generated in following
ways:
1. '.project' is autogenerated when importing the package as a general
   project to Eclipse.
2. Use Eclipse with plugin PyDev, the '.pydevproject' is autogenerated
   when setting the package as PyDev project.
3. Use VIM with plugin Python-mode as an Python IDE(enable rope support),
   '.ropeproject' will be autogenerated under project's root directory.

Change-Id: If92bd5c00429ec1410a6a388e34ee9afc24ede1b
This commit is contained in:
zhiguo.li 2017-10-09 17:23:18 +08:00
parent f8d27362b1
commit 32bdf52b9c
1 changed files with 3 additions and 0 deletions

3
.gitignore vendored
View File

@ -6,6 +6,9 @@
.stestr/*
.tox/*
.venv
.project
.pydevproject
.ropeproject
cover/*
build/*
etc/manilaclient/manilaclient.conf*