使用 Azure DevOps REST Api 如何获取默认分支?

Using Azure DevOps REST Api how can I get the default branch?

当我使用以下 API:

https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/stats/branches?api-version=6.0

响应包含一个名为 isBaseVersion 的键。这是否始终表示默认分支?

Does this always indicate the default branch?

是的。此参数(isBaseVersion)表示默认分支。

当值为真时,表示该分支为默认分支。