gpt4 book ai didi

repository - 使用 api 创建 BitBucket Team 存储库

转载 作者:行者123 更新时间:2023-12-04 00:41:02 24 4
gpt4 key购买 nike

我需要使用 Bitbucket API 创建团队存储库。

要创建我使用的用户存储库:

$ curl -k -X POST -u username:passwd "https://api.bitbucket.org/1.0/repositories" -d "name=myrep"

如果不是团队,我会怎么做?

最佳答案

这解释了它如何与 repositories 一起工作API 2 的终点:

$ team=myteam
$ repo=repository
$ curl -X POST -v -u username:password -H "Content-Type: application/json" \
https://api.bitbucket.org/2.0/repositories/${team}/${repo} \
-d '{"scm": "git", "is_private": "true", "fork_policy": "no_public_forks" }'

与 API 1 关于如何处理数据 (-d) 的不同之处在于 API2 使用 JSON 格式。

关于repository - 使用 api 创建 BitBucket Team 存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38272605/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com