Gitee

by normal-coder
Verified

get_branch

Retrieve specific branch details from a Gitee repository by providing the owner, repository name, and branch. Streamline repository management tasks efficiently.

Instructions

获取 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" }
ID: cck9xigm1d