获取项目贡献者代码行数
GET
/api/v1/{owner}/{repo}/code_stats.json最后修改时间: 1 年前
请求参数
Path 参数
owner
string
必需
repo
string
必需
Query 参数
ref
string
可选
分支名、标签名或commit_id,不填为默认分支
示例值:
master
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
author_count
integer
贡献者数量
commit_count
integer
commit数量
change_files
null
更改的文件数
additions
integer
新增代码行数
deletions
integer
删除代码行数
commit_count_in_all_branches
integer
在整个项目中的 commit数
authors
array [object {4}]
必需
author
object
贡献者用户信息
commits
integer
commit数
additions
integer
新增代码行数
deletions
integer
删除代码行数
示例成功示例
{
"author_count": 2,
"commit_count": 17,
"change_files": null,
"additions": 2,
"deletions": 0,
"commit_count_in_all_branches": 25,
"authors": [
{
"author": {
"id": "110",
"login": "yystopf",
"name": "咸蛋黄土豆丝",
"type": "User",
"image_url": "system/lets/letter_avatars/2/X/230_139_26/120.png"
},
"commits": 15,
"additions": 2,
"deletions": 0
},
{
"author": {
"id": null,
"login": "yystopf",
"name": "yystopf",
"type": null,
"image_url": "system/lets/letter_avatars/2/Y/241_125_89/120.png"
},
"commits": 2,
"additions": 0,
"deletions": 0
}
]
}
最后修改时间: 1 年前