You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Norwin d7f429d246 make issues & pulls subcommands consistent (#188)
Merge branch 'master' into pr-details

make issues & pulls subcommands consistent

- by default list open items
- show detail when argument is provided
- expose listing as ls subcommand
- accept --state flag on command and ls subcommand

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Norwin Roosen <git@nroo.de>
Reviewed-on: https://gitea.com/gitea/tea/pulls/188
Reviewed-by: 6543 <6543@noreply.gitea.io>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
4 years ago
cmd make issues & pulls subcommands consistent (#188) 4 years ago
modules More Options To Specify Repo (#178) 4 years ago
vendor Use glamour and termev to render/colorize content (#181) 4 years ago
.changelog.yml Add missing Changelog for 0.1.x releases (#91) 5 years ago
.drone.yml Update Golang (#185) 4 years ago
.gitignore Add gitea-vet (#121) 4 years ago
.revive.toml Add Makefile / .drone.yml, use go module with vendor (#20) 6 years ago
CHANGELOG.md [Frontport] Changelog v0.4.1 (#176) (#177) 4 years ago
CONTRIBUTING.md init project 6 years ago
DCO init project 6 years ago
LICENSE init project 6 years ago
Makefile Update gitea-vet v0.2.0 (#164) 4 years ago
README.md Update Golang (#185) 4 years ago
build.go Update gitea-vet v0.2.0 (#164) 4 years ago
go.mod Use glamour and termev to render/colorize content (#181) 4 years ago
go.sum Use glamour and termev to render/colorize content (#181) 4 years ago
main.go Add milestones subcomand (#149) 4 years ago

README.md

T E A

License: MIT Release Build Status Join the chat at https://img.shields.io/discord/322538954119184384.svg Go Report Card GoDoc

The official CLI interface for gitea

Tea is a command line tool for interacting on one or more Gitea instances. It uses code.gitea.io/sdk and interacts with the Gitea API

demo gif

Installation

You can use the prebuilt binaries from dl.gitea.io

To install from source, go 1.13 or newer is required:

go get code.gitea.io/tea
go install code.gitea.io/tea

If you have brew installed, you can install tea via:

brew tap gitea/tap https://gitea.com/gitea/homebrew-gitea
brew install tea

Distribution packages exist for: alpinelinux (tea) and archlinux (gitea-tea)

Usage

First of all, you have to create a token on your personal settings -> application page of your gitea instance. Use this token to login with tea:

tea login add --name=try --url=https://try.gitea.io --token=xxxxxx

Now you can use the following tea subcommands. Detailed usage information is available via tea <command> --help.

login            Log in to a Gitea server
logout           Log out from a Gitea server
issues           List, create and update issues
pulls            List, checkout and clean pull requests
releases         Create releases
repos            Operate with repositories
labels           Manage issue labels
times            Operate on tracked times of a repositorys issues and pulls
open             Open something of the repository on web browser

To fetch issues from different repos, use the --remote flag (when inside a gitea repository directory) or --login & --repo flags.

Compilation

Make sure you have installed a current go version. To compile the sources yourself run the following:

git clone https://gitea.com/gitea/tea.git
cd tea
make

Contributing

Fork -> Patch -> Push -> Pull Request

  • make test run testsuite
  • make vendor when adding new dependencies
  • ... (for other development tasks, check the Makefile)

Authors

License

This project is under the MIT License. See the LICENSE file for the full license text.