我已经下载了SCM-manager-CLI
我需要通过CLI
在SCM-manager中为GIT存储库设置分支写保护我通过网络应用设置了同样的内容
我需要通过CLI作为Automation
的一部分来实现怎么做?
答案 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 }
]
}'
上面的示例创建了一个具有已启用分支保护的新存储库。