在 azure devops 中创建存储库的请求正文是啥?
Posted
技术标签:
【中文标题】在 azure devops 中创建存储库的请求正文是啥?【英文标题】:what will be the request body for create repository in azure devops?在 azure devops 中创建存储库的请求正文是什么? 【发布时间】:2020-04-29 08:05:03 【问题描述】:我想使用 rest api 在 azure devops 中创建一个 git 存储库。 发布https://dev.azure.com/organization/project/_apis/git/repositories?api-version=5.1
【问题讨论】:
【参考方案1】:请求正文应该是这样的。
"name": "repo_name",
"teamProjectReference":
"id": "azure_project_id"
另外,您可以通过此链接更好地了解https://docs.microsoft.com/en-us/rest/api/azure/devops/git/repositories/create?view=azure-devops-rest-5.1
【讨论】:
【参考方案2】:您只需要在正文中传递存储库name和项目id:
"name": "AnotherRepository",
"project":
"id": "6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c"
另请参阅:Create a repository
【讨论】:
以上是关于在 azure devops 中创建存储库的请求正文是啥?的主要内容,如果未能解决你的问题,请参考以下文章
如果我们在 Azure DevOps Services 中创建项目时选择 TFVC 版本控制,是不是可以进行代码审查?
有没有办法在 Powershell 中创建一个数组并在 Azure DevOps YAML 中循环遍历它?