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
6543 cc77d5e17b Add Changelog for v0.3.1 (#139)
Add Changelog for v0.3.1

Co-authored-by: 6543 <6543@obermui.de>
Reviewed-on: https://gitea.com/gitea/tea/pulls/139
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
4 years ago
cmd --ssh-key should be string not bool (#135) (#137) 4 years ago
modules modules/git: fix dropped error (#127) 4 years ago
vendor add `tea pulls [checkout | clean]` commands (#93 #97 #107) (#105) 4 years ago
.changelog.yml Add missing Changelog for 0.1.x releases (#91) 4 years ago
.drone.yml Fix CI: Turn off go modules for xgo and gxz (#115) 4 years ago
.gitignore add repos subcommand [continue #44] (#3) (#65) 5 years ago
.revive.toml Add Makefile / .drone.yml, use go module with vendor (#20) 5 years ago
CHANGELOG.md Add Changelog for v0.3.1 (#139) 4 years ago
CONTRIBUTING.md init project 6 years ago
DCO init project 6 years ago
LICENSE init project 6 years ago
Makefile Fix CI: Turn off go modules for xgo and gxz (#115) 4 years ago
README.md README: add badges (#80) 4 years ago
go.mod add `tea pulls [checkout | clean]` commands (#93 #97 #107) (#105) 4 years ago
go.sum ignore PRs in runIssuesList() (#111) 4 years ago
main.go Changelog for v0.3.0 (#122) 4 years ago

README.md

Gitea Command Line Tool for Go

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

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

To fetch issues from different repos, use the --remote flag (when inside a gitea repository directory) or --login & --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

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