以嵌套样式创建发布分支

时间:2010-07-09 23:25:03

标签: version-control dvcs bazaar

我想要这个结构:

project/             # The overall repository, *and* the project's mainline branch
 + joe/              # Developer Joe's primary branch of development
 |  +- feature1/     # Developer Joe's feature1 development branch
 |  |   +- broken/   # A staging branch for Joe to develop feature1
 |  +- feature2/     # Joe's feature2 development branch
 |    ...
 + barry/            # Barry's development branch
 |  ...
 + releases/
    +- 1.0/
        +- 1.1.1/

我正在使用嵌套式样式存储库,但没有发布分支。根据我的阅读,我要做的只是用bzr branch project release/X.X发布分支创建?我错了,还是有另一个更好的方法?

1 个答案:

答案 0 :(得分:0)

cd project
mkdir releases
bzr branch . releases/1.0