如何使用bitbucket中的rest api创建拉/推请求。 我必须创建一个脚本来请求从bitbucket进行拉/推,任何人都可以举个例子。
我只想以这种方式将新文件添加到我的bitbucket存储库中(就像我们在终端(添加,提交和推送)中那样。
https://api.bitbucket.org/2.0/repositories/user/repo/pullrequests
Json如下(仅示例):
{
"source": {
"branch": {
"name": "master",
"commit": {
"hash": "zyx987"
},
"repository": {
"name": "awesomesauce",
"type": "repository",
"full_name": "source file"
}
},
},
"title": "Automatic PR: \"cool-feature\" -> \"master\"",
}
我不确定如何使用rest api将文件推送到bitbucket中。紧随Page