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 0926a42029 Fix log formatting, refactor flag definition in cmd/labels.go (#52) 5 years ago
cmd Fix log formatting, refactor flag definition in cmd/labels.go (#52) 5 years ago
modules Add Makefile / .drone.yml, use go module with vendor (#20) 5 years ago
vendor Add labels commands (#36) 5 years ago
.drone.yml change .drone.yml to new format (#33) 5 years ago
.gitignore add ignore file 6 years ago
.revive.toml Add Makefile / .drone.yml, use go module with vendor (#20) 5 years ago
CONTRIBUTING.md init project 6 years ago
DCO init project 6 years ago
LICENSE init project 6 years ago
Makefile Add missing make-compress to fix release (#23) 5 years ago
README.md chore: go support combine all coverage file (#24) 5 years ago
go.mod Add labels commands (#36) 5 years ago
go.sum Add labels commands (#36) 5 years ago
main.go Fix log formatting, refactor flag definition in cmd/labels.go (#52) 5 years ago

README.md

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

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.