获取分支列表
获取分支列表
Path Parameters
- owner required
代码仓库的所有者,一般称之为"用户名(username)"。该名称不区分大小写。
- repo required
代码仓库名称。该名称不区分大小写。
Query Parameters
- per_page
分页结果数
- page
分页页码
Header Parameters
- Authorization required
Oauth2 token或者私人token(需以Bearer加空格开头)
Responses
- 200
- 404
- responseBody
成功
资源未找到
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- name string
分支名称,不能包含通配符
commit object required
提交ID
sha string提交 SHA 值
- protected boolean
是否为保护分支。
- ]
[
{
"name": "string",
"commit": {
"sha": "string"
},
"protected": true
}
]
Loading...