从bitbucket Rest api中,我如何获取PullRequst修改的行数和文件数。我使用了这个“https://bitbucket.org/!api/2.0/repositories/ {userName} / {repoName} / pullrequests / 2 / diff”。但这返回为file。我可以从rest api本身获取filecount和行数吗?

最佳答案

还有一个端点diffstat,它也为您提供了每个文件添加/删除的统计信息行。因此,您仍然需要总结所有文件。

https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Busername%7D/%7Brepo_slug%7D/pullrequests/%7Bpull_request_id%7D/diffstat

关于bitbucket-api - 如何在Bitbucket Rest API中获取PullRequest Modified文件数和行数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42266405/

10-14 17:44
查看更多