355fd7aa53
improved logging try to use local branch before creating pulls/<PR> useful for checking out your own PRs reorder imports refactor pulls checkout isolated "gitea API to local git cfg" aspect work around go-git limitation As we cant manage multiple remote URLs properly, we just set the correct URL protocol ahead of time. This logic won't apply for already existing HTTPS remotes, these should be deleted before using `tea pr checkout`. use SSH if user has key in gitea Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Norwin Roosen <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/192 Reviewed-by: 6543 <6543@noreply.gitea.io> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-Authored-By: Norwin <noerw@noreply.gitea.io> Co-Committed-By: Norwin <noerw@noreply.gitea.io> |
||
---|---|---|
cmd | ||
modules | ||
vendor | ||
.changelog.yml | ||
.drone.yml | ||
.gitignore | ||
.revive.toml | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
DCO | ||
LICENSE | ||
Makefile | ||
README.md | ||
build.go | ||
go.mod | ||
go.sum | ||
main.go |
README.md
T E A
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
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 testsuitemake 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.