我的 Bazaar 层次结构中的哪个目录应该是 Eclipse 项目目录?
这可能是一个愚蠢的问题,但我决定将我的 Python 项目从 Spyder IDE 切换到 Eclipse。现在我不确定应该选择哪个目录作为主项目目录。
我习惯选择 src
,但现在我使用 Bazaar 而不是 git,并且我有 trunk
文件夹和 src
、doc< /code> 等在里面。
那么,我应该选择 project
、project/trunk
还是 project/trunk/src
作为主目录?如果没有规定,你更喜欢哪一个?
This may be a silly question, but I've decided to switch my Python project from Spyder IDE to Eclipse. And now I'm not sure which directory should I choose as main project directory.
I'm used to selecting src
, but now I use Bazaar instead of git and I have trunk
folder and src
, doc
, etc. inside of it.
So, should I choose project
, project/trunk
or project/trunk/src
as main directory? If there's no rule on it, which one do you prefer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您从未对项目进行过分支,那么您应该在project/trunk/src 之外进行工作。如果您要切换到 Eclipse,请考虑 Bazaar 集成。我正在使用 svn。我只是使用 Eclipse SVN 透视图检查整个项目,生成的项目结构类似于 SVN 存储库。您只需要了解主干/分支/标签即可正确组织它。
If you have never branched your project you should be working out of project/trunk/src. If you're switching to Eclipse look into Bazaar integration. I am using svn. I just checkout the entire project using Eclipse SVN perspective and the resulting project structure resembles the SVN repo. You just have to understand trunks/branches/tags to get it organized correctly.