开发者

Recommended workspace layout with Bazaar

I am trying to setup directory structure (workspace layout), I need to separate "stable" and "dev" cod开发者_运维技巧e, and have several releases. I found this Recommended Mercurial repository/folder structure for an SVN user Is this possible under Bazaar vcs? Any other suggestion to correctly structure directories?


That should work fine with Bazaar. eg.:

my-project (Bazaar shared repository[1])
+ trunk (you can use this for dev if you like)
+ branches (normal directory)
  + v1 (branch for a specific version)
  + v2 
+ stable (push the stable stuff in here)

You can use whatever directory structure that you like, but using the svn layout helps to make things consistent for others on your project that have worked with svn.

With Bazaar like with Mercurial you don't really need branches for each release because if you release off of trunk or stable then you can just tag it which basically sets a pointer to the revision. Although it is handy to keep a branch per series onto which you can push minor bug fixes to be released as part of the next bugfix release for that series.

[1] Make the base directory for your project a Bazaar shared repository, so that each branch does not keep a copy of the revision history but in stead store all the history in the repository. You can create a Bazaar repository with bzr init-repo /path/to/my-project which will create the directory for you too. All branches pushed or branched under that directory will automatically use the shared repository.


You can also read the official Bazaar documentation on organizing branches and advanced shared repository layouts.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜