TFS 2015 Release Management - 在 TFVC 中自动创建发布分支

TFS 2015 Release Management - Automatically create release branch in TFVC

TFS 2015 Release Management 中是否有任务会在发布成功创建后自动在 TFVC 中创建新的发布分支?

我正在尝试使用类似于此的分支策略,其中发布分支可用于修补程序:https://docs.microsoft.com/en-us/vsts/tfvc/branch-strategically#how-does-the-team-manage-releases-from-the-version-control-perspective

没有。您的构建可以在成功时标记 TFVC 源;如果您需要修补程序,您可以从该标签创建一个分支。在您实际需要之前无需创建服务分支。

您可以使用命令提示符并使用下面的 tf.exe 命令。所有步骤完成后,命令提示符将创建一个新分支。

tf branch olditem newitem [/version:versionspec] [/noget] [/lock:(none|checkin|checkout)] [/noprompt] [/silent] [/checkin] [/comment :("comment"|@commentfile)] [/author:authorname] [/login:用户名, [密码]]

更多信息请看下面 https://docs.microsoft.com/en-us/vsts/tfvc/branch-command