使用REST API设置VSTS Compare Branch

时间:2018-02-26 04:25:09

标签: azure-devops azure-devops-rest-api

在使用记录的REST API(latest documentation)的Visual Studio Team Services(VSTS)中,您可以初始化第一个分支,创建其他分支并更新GIT存储库的默认分支。

更新默认分支时,新的默认分支会自动成为比较分支。

所以我的问题是,有没有办法使用REST API修改比较分支?

1 个答案:

答案 0 :(得分:0)

补丁https://{account}.visualstudio.com/_apis/Settings/Repository/{repository id}/Entries/me?api-version=4.1-preview.1

内容类型:application/json

体:

{
    "Branches.Compare":"refs/heads/Dev1"
}

您可以通过Git repositories REST API获取存储库ID。