[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:
parent
f8d27362b1
commit
32bdf52b9c
3
.gitignore
vendored
3
.gitignore
vendored
@ -6,6 +6,9 @@
|
||||
.stestr/*
|
||||
.tox/*
|
||||
.venv
|
||||
.project
|
||||
.pydevproject
|
||||
.ropeproject
|
||||
cover/*
|
||||
build/*
|
||||
etc/manilaclient/manilaclient.conf*
|
||||
|
Loading…
x
Reference in New Issue
Block a user