1.5 KiB
1.5 KiB
name, description
| name | description |
|---|---|
| gitea-docs | Reference docs for the `tea` CLI — Gitea's command-line client. Load when the user asks about Gitea repos, issues, pulls, releases, actions, or other Gitea entities, to look up the right `tea` command and flags. |
gitea-docs
Reference material for the tea CLI (Gitea's official command-line client). Use these docs to look up commands, flags, filters, and output fields before running tea via Bash.
How to use
- Identify the entity in the user request: issues, pulls, labels, milestones, releases, times, repos, branches, actions, webhooks, comments, notifications, etc.
- Find the matching command in the index below.
- Run it via Bash, e.g.
tea issues list --repo owner/repo --state open.
tea auto-detects owner/repo/login from $PWD when inside a git repo; otherwise pass --repo owner/repo (or -r) explicitly. Config lives in $XDG_CONFIG_HOME/tea.
Index
- tea CLI overview — global flags, common options, output formats
- ENTITIES — issues, pulls, labels, milestones, releases, times, repos, branches, actions, webhooks, comment
- HELPERS — open, notifications, clone, api
- MISC — whoami, admin
- SETUP — logins, logout, ssh-keys
Tips
- Pass
-o jsonfor structured output when parsing programmatically. - Use
--fields, -fto narrow columns. - Pagination:
--page, -p <n>and--limit, --lm <n>(defaults 1 / 30).