fork_repository
Create a copy of a Gitee repository by specifying the owner and repository paths. Optionally, fork into an organization for collaborative development.
Instructions
Fork Gitee 仓库
Input Schema
Name | Required | Description | Default |
---|---|---|---|
organization | No | Organization path, defaults to personal account if not provided | |
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": {
"organization": {
"description": "Organization path, defaults to personal account if not provided",
"type": "string"
},
"owner": {
"description": "Repository owner path (enterprise, organization, or personal path)",
"type": "string"
},
"repo": {
"description": "Repository path",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}