开发者

Creating releases branch in nested style

开发者 https://www.devze.com 2023-01-06 04:12 出处:网络
I wanna have this structure: project/# The overall repository, *and* the project\'s mainline branch + joe/# Developer Joe\'s primary branch of development

I wanna have this structure:

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/

I'm working in a nested style repository but without the releases branches. According to what I've read, what I have to 开发者_如何学编程do is simply create with bzr branch project release/X.X the release branch? I am wrong, or there is a another and better way?


cd project
mkdir releases
bzr branch . releases/1.0
0

精彩评论

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