1
0
mirror of https://gitea.com/gitea/tea.git synced 2024-06-23 06:35:38 +00:00
Go to file
6543 0a5cdd60ac [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84)
Merge branch 'master' into update-cli-lib2

[Vendor] Update stretchr/testify  v1.3.0 -> v1.4.0 (#83)

update github.com/stretchr/testify  v1.3.0 -> v1.4.0

Co-authored-by: 6543 <6543@obermui.de>
Reviewed-by: techknowlogick <techknowlogick@gitea.io>
Reviewed-by: sapk <sapk@noreply.gitea.io>
Reviewed-by: appleboy <appleboy.tw@gmail.com>

Update urfave/cli v1.20.0 -> v1.22.2

Co-authored-by: 6543 <6543@obermui.de>
Reviewed-by: mrsdizzie <info@mrsdizzie.com>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
2020-01-04 04:45:36 +00:00
cmd Add --remote flag to add/create subcommands (#77) 2019-12-18 11:21:29 +00:00
modules Add Makefile / .drone.yml, use go module with vendor (#20) 2019-04-25 20:06:53 +03:00
vendor [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84) 2020-01-04 04:45:36 +00:00
.drone.yml fix typo in drone (#75) 2019-11-15 09:33:56 +00:00
.gitignore add repos subcommand [continue #44] (#3) (#65) 2019-11-08 01:33:46 +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 [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84) 2020-01-04 04:45:36 +00:00
go.sum [Vendor] Update urfave/cli v1.20.0 -> v1.22.2 (#84) 2020-01-04 04:45:36 +00:00
LICENSE init project 2018-09-03 14:43:00 +08:00
main.go add repos subcommand [continue #44] (#3) (#65) 2019-11-08 01:33:46 +00:00
Makefile Same release targets as gitea (#73) 2019-11-15 03:46:18 +00:00
README.md README: add badges (#80) 2020-01-03 00:58:45 +00:00

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.