# NAME tea - command line tool to interact with Gitea # SYNOPSIS tea ``` [--help|-h] [--version|-v] ``` # DESCRIPTION tea is a productivity helper for Gitea. It can be used to manage most entities on one or multiple Gitea instances & provides local helpers like 'tea pr checkout'. tea tries to make use of context provided by the repository in $PWD if available. tea works best in a upstream/fork workflow, when the local main branch tracks the upstream repo. tea assumes that local git state is published on the remote before doing operations with tea. Configuration is persisted in $XDG_CONFIG_HOME/tea. **Usage**: ``` tea [GLOBAL OPTIONS] command [COMMAND OPTIONS] [ARGUMENTS...] ``` # GLOBAL OPTIONS **--help, -h**: show help **--version, -v**: print the version # COMMANDS ## logins, login Log in to a Gitea server ### list, ls List Gitea logins **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) ### add Add a Gitea login **--insecure, -i**: Disable TLS verification **--name, -n**="": Login name **--no-version-check, --nv**: Do not check version of Gitea instance **--otp**="": OTP token for auth, if necessary **--password, --pwd**="": Password for basic auth (will create token) **--scopes**="": Token scopes to add when creating a new token, separated by a comma **--ssh-agent-key, -a**="": Use SSH public key or SSH fingerprint to login (needs a running ssh-agent with ssh key loaded) **--ssh-agent-principal, -c**="": Use SSH certificate with specified principal to login (needs a running ssh-agent with certificate loaded) **--ssh-key, -s**="": Path to a SSH key/certificate to use, overrides auto-discovery **--token, -t**="": Access token. Can be obtained from Settings > Applications **--url, -u**="": Server URL (default: https://gitea.com) **--user**="": User for basic auth (will create token) ### edit, e Edit Gitea logins **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) ### delete, rm Remove a Gitea login ### default Get or Set Default Login **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) ## logout Log out from a Gitea server ## shellcompletion, autocomplete Install shell completion for tea **--install**: Persist in shell config instead of printing commands ## whoami Show current logged in user ## issues, issue, i List, create and update issues **--assignee, -a**="": **--author, -A**="": **--comments**: Whether to display comments (will prompt if not provided & run interactively) **--fields, -f**="": Comma-separated list of fields to print. Available values: index,state,kind,author,author-id,url,title,body,created,updated,deadline,assignees,milestone,labels,comments,owner,repo (default: index,title,state,author,milestone,labels,owner,repo) **--from, -F**="": Filter by activity after this date **--keyword, -k**="": Filter by search string **--kind, -K**="": Whether to return `issues`, `pulls`, or `all` (you can use this to apply advanced search filters to PRs) (default: issues) **--labels, -L**="": Comma-separated list of labels to match issues against. **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--mentions, -M**="": **--milestones, -m**="": Comma-separated list of milestones to match issues against. **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--owner, --org**="": **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--state**="": Filter by state (all|open|closed) (default: open) **--until, -u**="": Filter by activity before this date ### list, ls List issues of the repository **--assignee, -a**="": **--author, -A**="": **--fields, -f**="": Comma-separated list of fields to print. Available values: index,state,kind,author,author-id,url,title,body,created,updated,deadline,assignees,milestone,labels,comments,owner,repo (default: index,title,state,author,milestone,labels,owner,repo) **--from, -F**="": Filter by activity after this date **--keyword, -k**="": Filter by search string **--kind, -K**="": Whether to return `issues`, `pulls`, or `all` (you can use this to apply advanced search filters to PRs) (default: issues) **--labels, -L**="": Comma-separated list of labels to match issues against. **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--mentions, -M**="": **--milestones, -m**="": Comma-separated list of milestones to match issues against. **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--owner, --org**="": **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--state**="": Filter by state (all|open|closed) (default: open) **--until, -u**="": Filter by activity before this date ### create, c Create an issue on repository **--assignees, -a**="": Comma-separated list of usernames to assign **--deadline, -D**="": Deadline timestamp to assign **--description, -d**="": **--labels, -L**="": Comma-separated list of labels to assign **--login, -l**="": Use a different Gitea Login. Optional **--milestone, -m**="": Milestone to assign **--referenced-version, -v**="": commit-hash or tag name to assign **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--title, -t**="": ### edit, e Edit one or more issues **--add-assignees, -a**="": Comma-separated list of usernames to assign **--add-labels, -L**="": Comma-separated list of labels to assign. Takes precedence over --remove-labels **--deadline, -D**="": Deadline timestamp to assign **--description, -d**="": **--login, -l**="": Use a different Gitea Login. Optional **--milestone, -m**="": Milestone to assign **--referenced-version, -v**="": commit-hash or tag name to assign **--remote, -R**="": Discover Gitea login from remote. Optional **--remove-labels**="": Comma-separated list of labels to remove **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--title, -t**="": ### reopen, open Change state of one or more issues to 'open' **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### close Change state of one ore more issues to 'closed' **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ## pulls, pull, pr Manage and checkout pull requests **--comments**: Whether to display comments (will prompt if not provided & run interactively) **--fields, -f**="": Comma-separated list of fields to print. Available values: index,state,author,author-id,url,title,body,mergeable,base,base-commit,head,diff,patch,created,updated,deadline,assignees,milestone,labels,comments (default: index,title,state,author,milestone,updated,labels) **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--state**="": Filter by state (all|open|closed) (default: open) ### list, ls List pull requests of the repository **--fields, -f**="": Comma-separated list of fields to print. Available values: index,state,author,author-id,url,title,body,mergeable,base,base-commit,head,diff,patch,created,updated,deadline,assignees,milestone,labels,comments (default: index,title,state,author,milestone,updated,labels) **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--state**="": Filter by state (all|open|closed) (default: open) ### checkout, co Locally check out the given PR **--branch, -b**: Create a local branch if it doesn't exist yet **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### clean Deletes local & remote feature-branches for a closed pull request **--ignore-sha**: Find the local branch by name instead of commit hash (less precise) **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### create, c Create a pull-request **--allow-maintainer-edits, --edits**: Enable maintainers to push to the base branch of created pull **--assignees, -a**="": Comma-separated list of usernames to assign **--base, -b**="": Branch name of the PR target (default is repos default branch) **--deadline, -D**="": Deadline timestamp to assign **--description, -d**="": **--head**="": Branch name of the PR source (default is current one). To specify a different head repo, use : **--labels, -L**="": Comma-separated list of labels to assign **--login, -l**="": Use a different Gitea Login. Optional **--milestone, -m**="": Milestone to assign **--referenced-version, -v**="": commit-hash or tag name to assign **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--title, -t**="": ### close Change state of one or more pull requests to 'closed' **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### reopen, open Change state of one or more pull requests to 'open' **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### review Interactively review a pull request **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### approve, lgtm, a Approve a pull request **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### reject Request changes to a pull request **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### merge, m Merge a pull request **--login, -l**="": Use a different Gitea Login. Optional **--message, -m**="": Merge commit message **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--style, -s**="": Kind of merge to perform: merge, rebase, squash, rebase-merge (default: merge) **--title, -t**="": Merge commit title ## labels, label Manage issue labels **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--save, -s**: Save all the labels as a file ### list, ls List labels **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--save, -s**: Save all the labels as a file ### create, c Create a label **--color**="": label color value **--description**="": label description **--file**="": indicate a label file **--login, -l**="": Use a different Gitea Login. Optional **--name**="": label name **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### update Update a label **--color**="": label color value **--description**="": label description **--id**="": label id (default: 0) **--login, -l**="": Use a different Gitea Login. Optional **--name**="": label name **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### delete, rm Delete a label **--id**="": label id (default: 0) **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ## milestones, milestone, ms List and create milestones **--fields, -f**="": Comma-separated list of fields to print. Available values: title,state,items_open,items_closed,items,duedate,description,created,updated,closed,id (default: title,items,duedate) **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--state**="": Filter by milestone state (all|open|closed) (default: open) ### list, ls List milestones of the repository **--fields, -f**="": Comma-separated list of fields to print. Available values: title,state,items_open,items_closed,items,duedate,description,created,updated,closed,id (default: title,items,duedate) **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--state**="": Filter by milestone state (all|open|closed) (default: open) ### create, c Create an milestone on repository **--deadline, --expires, -x**="": set milestone deadline (default is no due date) **--description, -d**="": milestone description to create **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--state**="": set milestone state (default is open) (default: open) **--title, -t**="": milestone title to create ### close Change state of one or more milestones to 'closed' **--force, -f**: delete milestone **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### delete, rm delete a milestone **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### reopen, open Change state of one or more milestones to 'open' **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### issues, i manage issue/pull of an milestone **--fields, -f**="": Comma-separated list of fields to print. Available values: index,state,kind,author,author-id,url,title,body,created,updated,deadline,assignees,milestone,labels,comments,owner,repo (default: index,kind,title,state,updated,labels) **--kind**="": Filter by kind (issue|pull) **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--state**="": Filter by issue state (all|open|closed) (default: open) #### add, a Add an issue/pull to an milestone **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional #### remove, r Remove an issue/pull to an milestone **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ## releases, release, r Manage releases **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### list, ls List Releases **--limit, --lm**="": specify limit of items per page **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--page, -p**="": specify page, default is 1 **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### create, c Create a release **--asset, -a**="": Path to file attachment. Can be specified multiple times **--draft, -d**: Is a draft **--login, -l**="": Use a different Gitea Login. Optional **--note, -n**="": Release notes **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--prerelease, -p**: Is a pre-release **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--tag**="": Tag name. If the tag does not exist yet, it will be created by Gitea **--target**="": Target branch name or commit hash. Defaults to the default branch of the repo **--title, -t**="": Release title ### delete, rm Delete one or more releases **--confirm, -y**: Confirm deletion (required) **--delete-tag**: Also delete the git tag for this release **--login, -l**="": Use a different Gitea Login. Optional **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### edit, e Edit one or more releases **--draft, -d**="": Mark as Draft [True/false] (default: true) **--login, -l**="": Use a different Gitea Login. Optional **--note, -n**="": Change Notes **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--prerelease, -p**="": Mark as Pre-Release [True/false] (default: true) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--tag**="": Change Tag **--target**="": Change Target **--title, -t**="": Change Title ## times, time, t Operate on tracked times of a repository's issues & pulls **--fields**="": Comma-separated list of fields to print. Available values: id,created,repo,issue,user,duration **--from, -f**="": Show only times tracked after this date **--login, -l**="": Use a different Gitea Login. Optional **--mine, -m**: Show all times tracked by you across all repositories (overrides command arguments) **--output, -o**="": Output format. (simple, table, csv, tsv, yaml, json) **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional **--total, -t**: Print the total duration at the end **--until, -u**="": Show only times tracked before this date ### add, a Track spent time on an issue >tea times add **--login, -l**="": Use a different Gitea Login. Optional **--remote, -R**="": Discover Gitea login from remote. Optional **--repo, -r**="": Override local repository path or gitea repository slug to interact with. Optional ### delete, rm Delete a single tracked time on an issue >tea times delete