如何使用 "Method: projects.repos.create" 镜像 bitbucket repo
How to use "Method: projects.repos.create" to mirror bitbucket repo
我想在 Google Source Repository 中镜像 bitbucket repo 所以,我需要在下面 json 请求正文中传递什么。
{
"mirrorConfig": {
"url": "",
"deployKeyId": "",
"webhookId": ""
},
"name": "",
"pubsubConfigs": {}
}```
如 projects.repos
resource reference 中所述,mirrorConfig
字段当前设置为只读,因此无法手动为其设置任何值。
目前无法通过 API 镜像存储库,您必须通过 Cloud Console 连接到外部源,如 Mirroring a Bitbucket repository 文档中所述。
我想在 Google Source Repository 中镜像 bitbucket repo 所以,我需要在下面 json 请求正文中传递什么。
{
"mirrorConfig": {
"url": "",
"deployKeyId": "",
"webhookId": ""
},
"name": "",
"pubsubConfigs": {}
}```
如 projects.repos
resource reference 中所述,mirrorConfig
字段当前设置为只读,因此无法手动为其设置任何值。
目前无法通过 API 镜像存储库,您必须通过 Cloud Console 连接到外部源,如 Mirroring a Bitbucket repository 文档中所述。