get_branch
Retrieve specific branch details from a Gitee repository by providing the owner, repository, and branch name for efficient repository management.
Instructions
获取 Gitee 仓库中的特定分支信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | Yes | Branch name | |
owner | Yes | Repository owner path (enterprise, organization, or personal path) | |
repo | Yes | Repository 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"
}