获取提交信息
获取提交信息
Path Parameters
- owner required
代码仓库的所有者,一般称之为"用户名(username)"。该名称不区分大小写。
- repo required
代码仓库名称。该名称不区分大小写。
- ref required
引用
Header Parameters
- Authorization required
Oauth2 token或者私人token(需以Bearer加空格开头)
Responses
- 200
- 404
- 500
- responseBody
成功
资源未找到
内部错误
- application/json
- Schema
- Example (from schema)
Schema
- name string
引用名称。
commit object
committer object required
提交者。默认值:当前认证的用户。
name string提交者的名称。如果省略该字段,您将收到 422 状态码。
email string提交者的电子邮件。如果省略电子邮件,您将收到422状态码。
date stringauthor object required
提交作者。默认值:当前认证的用户。
name string提交作者的名称。如果省略该字段,您将收到 422 状态码。
email string提交作者的电子邮件。如果省略电子邮件,您将收到422状态码。
date stringmessage string提交信息。
- sha string
提交 SHA 值
parents object[] required
Array [sha string提交 SHA 值
]stats object required
additions integerdeletions integertotal integer
{
"name": "string",
"commit": {
"committer": {
"name": "string",
"email": "string",
"date": "string"
},
"author": {
"name": "string",
"email": "string",
"date": "string"
},
"message": "string"
},
"sha": "string",
"parents": [
{
"sha": "string"
}
],
"stats": {
"additions": 0,
"deletions": 0,
"total": 0
}
}
Loading...