查询某个仓库的特定提交信息-九游平台
功能介绍
获取由commit id或分支或标记的名称标识的特定提交。
调试
您可以在中调试该接口,支持自动认证鉴权。api explorer可以自动生成sdk代码示例,并提供sdk代码示例调试功能。
uri
get /v2/projects/{repo_id}/repository/commits/{sha}
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
repo_id |
是 |
integer |
仓库短id |
sha |
是 |
string |
commit id,仓库的branch名或tag名 |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
stats |
否 |
boolean |
包括提交统计信息。默认值为true |
请求参数
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
x-auth-token |
是 |
string |
用户token。 通过调用iam服务获取用户token接口获取(响应消息头中x-subject-token的值)。 |
响应参数
状态码: 200
参数 |
参数类型 |
描述 |
---|---|---|
error |
error object |
响应错误 |
result |
specificcommitinfo object |
响应结果 |
status |
string |
响应状态 |
参数 |
参数类型 |
描述 |
---|---|---|
code |
string |
错误码 |
message |
string |
错误信息 |
参数 |
参数类型 |
描述 |
---|---|---|
id |
string |
提交对应的sha id |
short_id |
string |
提交对应的短sha id |
title |
string |
提交标题 |
author_name |
string |
作者 |
author_email |
string |
作者邮箱 |
committer_name |
string |
提交作者 |
committer_email |
string |
提交作者邮箱 |
created_at |
string |
创建时间 |
message |
string |
提交信息 |
parent_ids |
array of strings |
父提交id |
committed_date |
string |
提交时间 |
authored_date |
string |
作者提交时间 |
stats |
stats object |
变更行数 |
last_pipeline |
last_pipeline object |
流水线信息 |
参数 |
参数类型 |
描述 |
---|---|---|
additions |
integer |
变更增加的行数 |
deletions |
integer |
变更删除的行数 |
total |
integer |
变更的总行数 |
参数 |
参数类型 |
描述 |
---|---|---|
id |
integer |
流水线id |
sha |
string |
提交对应的sha id |
ref |
string |
分支名 |
status |
string |
流水线状态 |
web_url |
string |
流水线url |
请求示例
get https://{endpoint}/v2/projects/859341/repository/commits/master
响应示例
状态码: 200
ok
{ "result" : { "id" : "85a0a9d5c6e43bc9c3e443ac01f789e24eeef02b", "title" : "some commit message", "message" : "some commit message", "short_id" : "85a0a9d5", "author_name" : "repo", "author_email" : null, "committer_name" : "repo", "committer_email" : null, "created_at" : "2021-09-26t03:44:51.000z", "parent_ids" : [ "5c114bb316dff4d4a046e09a5c44c816f2433140" ], "committed_date" : "2021-09-26t03:44:51.000z", "authored_date" : null, "stats" : { "additions" : 1, "deletions" : 0, "total" : 1 }, "last_pipeline" : { "id" : 292811, "sha" : "2202af08836f0afd762d1b151d15ac510b974bdf", "ref" : "master", "status" : "running", "web_url" : "https://test.com/pipeline_beta_sdcs00001/202107171926/pipelines/292811" } }, "status" : "success" }
状态码
状态码 |
描述 |
---|---|
200 |
ok |
错误码
请参见错误码。
相关文档
意见反馈
文档内容是否对您有帮助?
如您有其它疑问,您也可以通过华为云社区问答频道来与我们联系探讨