SCM-manager CLI设置分支写保护

时间:2017-11-28 10:19:21

标签: scmmanager

我已经下载了SCM-manager-CLI

我需要通过CLI

在SCM-manager中为GIT存储库设置分支写保护

我通过网络应用设置了同样的内容

我需要通过CLI作为Automation

的一部分来实现

怎么做?

1 个答案:

答案 0 :(得分:0)

您好cli目前不支持属性,但您可以使用其余的api来设置属性:

curl -u scmadmin:scmadmin -v http://localhost:8080/scm/api/rest/repositories -XPOST -H 'Content-Type: application/json' -d '{
  "name": "newrepository",
  "description": "repository with branch protection",
  "type": "git",
  "properties": [
    { "key": "branchwp.enabled", "value": true },
    { "key": "branchwp.permissions", "value": "master,userone;develop,@devgroup;" }
  ],
  "permissions": [
    { "name": "userone", "type": "WRITE", "groupPermission": false },
    { "name": "devgroup", "type": "WRITE", "groupPermission": true }
  ]
}'

上面的示例创建了一个具有已启用分支保护的新存储库。