以嵌套样式创建发布分支

发布于 2024-09-09 01:24:54 字数 605 浏览 1 评论 0原文

我想要这样的结构:

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 分支项目release/XX 创建发布分支?我错了,还是有其他更好的方法?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱,才寂寞 2024-09-16 01:24:54
cd project
mkdir releases
bzr branch . releases/1.0
cd project
mkdir releases
bzr branch . releases/1.0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文