Go to file
6543 d5058b3b20 Update Vendors (#250)
update go min version

Update Vendors:
 * code.gitea.io/gitea-vet v0.2.0 -> v0.2.1
 * code.gitea.io/sdk/gitea v0.13.0 -> v0.13.1
 * github.com/AlecAivazis/survey v2.1.1 -> v2.2.2
 * github.com/adrg/xdg v0.2.1 -> v0.2.2
 * github.com/araddon/dateparse d820a6159ab1 -> 8aadafed4dc4
 * github.com/go-git/go-git v5.1.0 -> v5.2.0
 * github.com/muesli/termenv v0.7.2 -> v0.7.4
 * github.com/stretchr/testify v1.5.1 -> v1.6.1
 * github.com/urfave/cli v2.2.0 -> v2.3.0

Co-authored-by: 6543 <6543@obermui.de>
Reviewed-on: https://gitea.com/gitea/tea/pulls/250
Reviewed-by: Andrew Thornton <art27@cantab.net>
Reviewed-by: mrsdizzie <info@mrsdizzie.com>
Co-Authored-By: 6543 <6543@noreply.gitea.io>
Co-Committed-By: 6543 <6543@noreply.gitea.io>
2020-11-09 23:25:54 +08:00
cmd `tea pr checkout`: fetch via ssh if available (#192) 2020-11-07 15:00:03 +08:00
modules improve formatting of `tea repos` (#223) 2020-10-10 01:17:31 +00:00
vendor Update Vendors (#250) 2020-11-09 23:25:54 +08:00
.changelog.yml Add missing Changelog for 0.1.x releases (#91) 2020-01-31 02:24:57 +00:00
.drone.yml Update Golang (#185) 2020-09-19 15:29:15 +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
CHANGELOG.md Changelog v0.5.0 (#205) 2020-09-27 14:35:53 +00:00
CONTRIBUTING.md Update Docu to new Structure (#247) 2020-10-25 07:48:20 +08:00
DCO init project 2018-09-03 14:43:00 +08:00
LICENSE init project 2018-09-03 14:43:00 +08:00
Makefile Update gitea-vet v0.2.0 (#164) 2020-07-21 16:17:52 +00:00
README.md Update Docu to new Structure (#247) 2020-10-25 07:48:20 +08:00
build.go Update gitea-vet v0.2.0 (#164) 2020-07-21 16:17:52 +00:00
go.mod Update Vendors (#250) 2020-11-09 23:25:54 +08:00
go.sum Update Vendors (#250) 2020-11-09 23:25:54 +08:00
main.go Add Detail View for Login (#212) 2020-10-02 15:57:48 +00:00

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, create, checkout and clean pull requests
releases         List, create, update and delete 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
notifications    Show notifications
milestones       List and create milestones

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)

Please read the CONTRIBUTING documentation, it will tell you about internal structures and concepts.

License

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