A command line tool to interact with Gitea servers
Go to file
2019-10-28 21:10:20 +00:00
cmd changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
modules Add Makefile / .drone.yml, use go module with vendor (#20) 2019-04-25 20:06:53 +03:00
vendor changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
.drone.yml changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
.gitignore changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
.revive.toml Add Makefile / .drone.yml, use go module with vendor (#20) 2019-04-25 20:06:53 +03: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 changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
go.sum changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
LICENSE init project 2018-09-03 14:43:00 +08:00
main.go Fix log formatting, refactor flag definition in cmd/labels.go (#52) 2019-10-26 04:50:30 +00:00
Makefile Add missing make-compress to fix release (#23) 2019-04-27 21:01:07 +08:00
README.md Add install guide from brew on README (#61) 2019-10-28 19:40:09 +00:00

Gitea Command Line Tool for Go

This project acts as a command line tool for operating one or multiple Gitea instances. It depends on code.gitea.io/sdk client SDK implementation written in Go to interact with the Gitea API implementation.

Installation

Currently no prebuilt binaries are provided. To install, a Go installation is needed.

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

If the tea executable is not found, you might need to set up your $GOPATH and $PATH variables first:

export PATH=$PATH:$GOROOT/bin:$GOPATH/bin

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

brew tap gitea/tap https://gitea.com/gitea/homebrew-gitea
brew install --devel 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 tea commands:

tea issues
tea releases

If you are inside a git repository hosted on a gitea instance, you don't need to specify the --login and --repo flags!

Compilation

To compile the sources yourself run the following:

go get code.gitea.io/tea
cd "${GOPATH}/src/code.gitea.io/tea"
go build

Contributing

Fork -> Patch -> Push -> Pull Request

Authors

License

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