Gitee

by normal-coder
Verified

create_repository

创建 Gitee 仓库

Input Schema

NameRequiredDescriptionDefault
auto_initNoWhether to automatically initialize the repository
descriptionNoRepository description
gitignore_templateNoGit Ignore template
has_issuesNoWhether to enable Issue functionality
has_wikiNoWhether to enable Wiki functionality
homepageNoHomepage URL
license_templateNoLicense template
nameYesRepository name
pathNoRepository path
privateNoWhether 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" }