Interact with Gitea using the `tea` CLI. Use `tea issues`, `tea pulls`, `tea releases`, and other commands for issues, PRs, releases, and repository management.
使用 tea 命令行工具与 Gitea 服务器交互。不在 Git 目录中时使用 --repo owner/repo,或使用 --login instance.com 指定 Gitea 实例。
添加一次登录即可开始使用:
bash
tea login add
查看当前登录用户:
bash
tea whoami
列出你有权访问的仓库:
bash
tea repos list
创建新仓库:
bash
tea repos create --name my-repo --description 我的项目 --init
创建私有仓库:
bash
tea repos create --name my-repo --private --init
复刻仓库:
bash
tea repos fork owner/repo
删除仓库:
bash
tea repos delete --name my-repo --owner myuser --force
列出开放的拉取请求:
bash
tea pulls --repo owner/repo
查看特定 PR:
bash
tea pr 55 --repo owner/repo
在本地检出 PR:
bash
tea pr checkout 55
创建新 PR:
bash
tea pr create --title 功能标题 --description 描述
列出开放的问题:
bash
tea issues --repo owner/repo
查看特定问题:
bash
tea issue 189 --repo owner/repo
创建新问题:
bash
tea issue create --title Bug 标题 --body 描述
查看里程碑的问题:
bash
tea milestone issues 0.7.0
向问题或 PR 添加评论:
bash
tea comment 189 --body 你的评论
列出发布版本:
bash
tea releases --repo owner/repo
创建新发布版本:
bash
tea release create --tag v1.0.0 --title 发布 1.0.0
列出仓库操作密钥:
bash
tea actions secrets list
创建新密钥:
bash
tea actions secrets create API_KEY
列出操作变量:
bash
tea actions variables list
设置操作变量:
bash
tea actions variables set API_URL https://api.example.com
列出仓库 Webhooks:
bash
tea webhooks list
列出组织 Webhooks:
bash
tea webhooks list --org myorg
创建 Webhook:
bash
tea webhooks create https://example.com/hook --events push,pull_request
列出分支:
bash
tea branches --repo owner/repo
列出标签:
bash
tea labels --repo owner/repo
列出里程碑:
bash
tea milestones --repo owner/repo
列出组织:
bash
tea organizations
显示仓库详情:
bash
tea repo --repo owner/repo
在浏览器中打开内容:
bash
tea open 189 # 打开问题/PR 189
tea open milestones # 打开里程碑页面
克隆仓库:
bash
tea clone owner/repo
显示通知:
bash
tea notifications --mine
使用 --output 或 -o 控制输出格式:
bash
tea issues --output simple # 简单文本输出
tea issues --output csv # CSV 格式
tea issues --output yaml # YAML 格式
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 gitea-1776375111 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 gitea-1776375111 技能
skillhub install gitea-1776375111
文件大小: 1.58 KB | 发布时间: 2026-4-17 15:21