我是如何获得所有提交的(使用PHP
和curl
)。首先我得到最后一次提交:
https://git.our_company.com/api/v3/projects/xxx/repository/branches/?private_token=xxx
第二个我以前的提交:
https://git.our_company.com/api/v3/projects/xxx/repository/commits/?per_page=100&sha={$sha}&private_token={$token};
但需要时间和资源过滤由作者提交后提交
Here提到我们可以指定作者(?)。 已更新我尝试添加&author=name
,但没有更改。我无法让它发挥作用。
如评论here,此功能已弃用。