create_repository
Create a Gitee repository with customizable settings, including name, description, privacy, issue tracking, wiki, initialization, and templates for Git Ignore and License.
Instructions
创建 Gitee 仓库
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auto_init | No | Whether to automatically initialize the repository | |
description | No | Repository description | |
gitignore_template | No | Git Ignore template | |
has_issues | No | Whether to enable Issue functionality | |
has_wiki | No | Whether to enable Wiki functionality | |
homepage | No | Homepage URL | |
license_template | No | License template | |
name | Yes | Repository name | |
path | No | Repository path | |
private | No | Whether the repository is private |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"auto_init": {
"default": false,
"description": "Whether to automatically initialize the repository",
"type": "boolean"
},
"description": {
"description": "Repository description",
"type": "string"
},
"gitignore_template": {
"description": "Git Ignore template",
"type": "string"
},
"has_issues": {
"default": true,
"description": "Whether to enable Issue functionality",
"type": "boolean"
},
"has_wiki": {
"default": true,
"description": "Whether to enable Wiki functionality",
"type": "boolean"
},
"homepage": {
"description": "Homepage URL",
"type": "string"
},
"license_template": {
"description": "License template",
"type": "string"
},
"name": {
"description": "Repository name",
"type": "string"
},
"path": {
"description": "Repository path",
"type": "string"
},
"private": {
"default": false,
"description": "Whether the repository is private",
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
}