使用 teamcity 在 svn 中自动分支
我想知道是否可以使用 Teamcity 进行自动分支。目前,我使用 web 部署自动发布 Web 应用程序,唯一剩下的就是分支,因为我们通常在 svn 中创建一个分支,然后发布下一个版本。任何人都可以建议是否可能以及如何做。
I wonder whether it is possible to do auto branching using Teamcity. As currently I am automatically publishing web applications using web deploy and the only thing left is branching as we usually take a branch in svn and then publish the next version. Can any one please advise if it is possible and how to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开您的发布版本的 TeamCity 版本控制设置。
将“VCS 标签模式”设置为“仅成功”并指定适当的标签模式。例如
release-build-%system.build.number%
。在此页面顶部输入结账规则+:/trunk => .
然后单击编辑打开 VCS 根设置页面。确保 URL 指向源代码控制树的根级别,例如
https://vcserver/
而不是主干https://vcserver/trunk
。另外,在此页面上,将标签规则设置为trunk=>branches
每次运行此构建时,它将使用新的系统构建号自动进行分支。
Open TeamCity Version Control Settings for your release build.
Set "VCS labeling mode" to "Successful only" and specify an appropriate labeling pattern. E.g.
release-build-%system.build.number%
. At the top of this page, enter the checkout rule+:/trunk => .
then click edit to open the VCS root settings page.Ensure URL points to the root level of the source control tree E.g.
https://vcserver/
instead of the trunkhttps://vcserver/trunk
. Also on this page, set the labeling rule totrunk=>branches
Each time you run this build, it will be branched automatically using a new system build number.