我正在尝试在bitbucket存储中的特定分支上提交提交。
我尝试了
https://<stash-url>/stash/rest/api/1.0/projects/<project-ID>/repos/<repo-slig>/compare/commits?from=<my-target-feature-branch>&to=master
这给了我
{
"values": [],
"size": 0,
"isLastPage": true,
"start": 0,
"limit": 25,
"nextPageStart": null
}
我尝试的其他网址是
https://<stash-url>/stash/rest/api/latest/projects/<project-ID>/repos/<repo-slug>/commits?until=<my-target-feature-branch>&limit=100
这也给了我大师的整个提交历史。
有人可以帮我吗?我是新手,我确定对API文档的理解有误
答案 0 :(得分:0)
尝试:
new Vue({
el: '#app',
data: {
myvalue: '',
focused : {
mycheck: false
},
rules: {
mycheck: [
{ required: true, message: 'Please input required', trigger: 'blur' },
{ min: 1, trigger: 'blur' }
],
}
}
})