Removing IDE specific ignores
Reasons - .gitignore contains IDE specific ignores - IDE specific ignores should be setup using global gitignore on local box. for eg. create a .gitignore locally and use ... git config --global core.excludesfile .gitignore Changes - Removed .idea generated by IntelliJ. - Removed .DS_Store generated by Mac OS. - Removed .project generated by Eclipse. - Removed .pydevproject generated by PyDev. - Removed atlassian-ide-plugin.xml generated by Atlassian IDE. Change-Id: I902e980834716edb8a30ca58df520fd3fc0f73aa Closes-Bug: #1257279
This commit is contained in:
parent
5eede25ae4
commit
62f67b5a2f
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,6 +1,5 @@
|
|||||||
vagrant/
|
vagrant/
|
||||||
*.pyc
|
*.pyc
|
||||||
.idea
|
|
||||||
trove_test.sqlite
|
trove_test.sqlite
|
||||||
.venv
|
.venv
|
||||||
run_tests.log
|
run_tests.log
|
||||||
@ -10,7 +9,6 @@ trove/vcsversion.py
|
|||||||
*py*.egg
|
*py*.egg
|
||||||
.coverage
|
.coverage
|
||||||
cover/
|
cover/
|
||||||
.DS_Store
|
|
||||||
dist/
|
dist/
|
||||||
host-syslog.log
|
host-syslog.log
|
||||||
tags
|
tags
|
||||||
@ -20,11 +18,8 @@ trove/versioninfo
|
|||||||
AUTHORS
|
AUTHORS
|
||||||
ChangeLog
|
ChangeLog
|
||||||
trove.iml
|
trove.iml
|
||||||
atlassian-ide-plugin.xml
|
|
||||||
.testrepository
|
.testrepository
|
||||||
.pid
|
.pid
|
||||||
.project
|
|
||||||
.pydevproject
|
|
||||||
|
|
||||||
# Sphinx
|
# Sphinx
|
||||||
doc/build/*
|
doc/build/*
|
||||||
|
Loading…
Reference in New Issue
Block a user