A command line tool to interact with Gitea servers
Go to file
6543 8372dad929
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
Changelog v0.4.1 (#176)
Changelog v0.4.1

Co-authored-by: 6543 <6543@obermui.de>
Reviewed-on: #176
Reviewed-by: Andrew Thornton <art27@cantab.net>
Reviewed-by: Gary Kim <gary@garykim.dev>
2020-09-13 21:48:36 +00:00
cmd Fix notification: --all dont relay on a repo (#159) 2020-07-20 03:09:34 +00:00
modules Fix Login Detection By Repo Param (#151) 2020-07-17 16:36:48 +00:00
vendor Update Vendors (#145) 2020-07-13 22:38:05 +00:00
.changelog.yml Add missing Changelog for 0.1.x releases (#91) 2020-01-31 02:24:57 +00:00
.drone.yml Fix CI: Turn off go modules for xgo and gxz (#115) 2020-04-06 14:21:36 +00:00
.gitignore Add gitea-vet (#121) 2020-04-28 13:02:21 +00:00
.revive.toml Add Makefile / .drone.yml, use go module with vendor (#20) 2019-04-25 20:06:53 +03:00
build.go Add gitea-vet (#121) 2020-04-28 13:02:21 +00:00
CHANGELOG.md Changelog v0.4.1 (#176) 2020-09-13 21:48:36 +00:00
CONTRIBUTING.md init project 2018-09-03 14:43:00 +08:00
DCO init project 2018-09-03 14:43:00 +08:00
go.mod Update Vendors (#145) 2020-07-13 22:38:05 +00:00
go.sum Update Vendors (#145) 2020-07-13 22:38:05 +00:00
LICENSE init project 2018-09-03 14:43:00 +08:00
main.go Add notifications subcomand (#148) 2020-07-17 15:30:02 +00:00
Makefile Add gitea-vet (#121) 2020-04-28 13:02:21 +00:00
README.md Add note for alpine/arch-linux package (#143) 2020-07-05 18:36:21 +00:00

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.12 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.