Gitee

by normal-coder
Verified

get_branch

获取 Gitee 仓库中的特定分支信息

Input Schema

NameRequiredDescriptionDefault
branchYesBranch name
ownerYesRepository owner path (enterprise, organization, or personal path)
repoYesRepository path

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "branch": { "description": "Branch name", "type": "string" }, "owner": { "description": "Repository owner path (enterprise, organization, or personal path)", "type": "string" }, "repo": { "description": "Repository path", "type": "string" } }, "required": [ "owner", "repo", "branch" ], "type": "object" }