如何使用curl创建bitbucket存储库?

时间:2016-08-03 20:24:02

标签: curl bitbucket bitbucket-server bitbucket-api

我尝试过多种方法,比如

curl -you 'USERNAME' https://api.bitbucket.org/1.0/repositories -d '{"name":"REPO"}'
curl -k -X POST --user user: pass \ "https://api.bitbucket.org/1.0/repositories" -d "name=project_name"

我错过了什么?

1 个答案:

答案 0 :(得分:4)

没关注Bitbucket版本4.4的以下工作

curl -X POST -v -u $uservar:$passvar http://<redacted>/rest/api/1.0/projects/$projectkeyvar/repos -H "Content-Type: application/json" -d "{\"name\": \"$reponamevar\",\"scmId\": \"git\", \"forkable\": true }"

我在shell脚本中使用它,因此是变量。