mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	Update Readme & add demo GIF (#125)
add suggestions from reviews & remove alias from subcomand list gif is now on cdn & add review suggestion Add ICON & Name update description & co add demo gif fix newline becaues of new markdown roule Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/125 Reviewed-by: lafriks <lafriks@noreply.gitea.io> Reviewed-by: Gary Kim <gary@garykim.dev>
This commit is contained in:
		
							
								
								
									
										52
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										52
									
								
								README.md
									
									
									
									
									
								
							| @@ -1,36 +1,31 @@ | |||||||
| # Gitea Command Line Tool for Go | # <img alt='' src='https://gitea.com/repo-avatars/550-80a3a8c2ab0e2c2d69f296b7f8582485' height="40"/> *T E A* | ||||||
|  |  | ||||||
| [](https://opensource.org/licenses/MIT) | [](https://opensource.org/licenses/MIT) [](https://gitea.com/gitea/tea/releases) [](https://drone.gitea.com/gitea/tea) [](https://discord.gg/Gitea) [](https://goreportcard.com/report/code.gitea.io/tea) [](https://godoc.org/code.gitea.io/tea) | ||||||
| [](https://gitea.com/gitea/tea/releases) |  | ||||||
| [](https://drone.gitea.com/gitea/tea) |  | ||||||
| [](https://discord.gg/Gitea) |  | ||||||
| [](https://goreportcard.com/report/code.gitea.io/tea) |  | ||||||
| [](https://godoc.org/code.gitea.io/tea) |  | ||||||
|  |  | ||||||
| This project acts as a command line tool for operating one or multiple Gitea instances. It depends on [code.gitea.io/sdk](https://code.gitea.io/sdk) client SDK implementation written in Go to interact with | ## The official CLI interface for gitea | ||||||
| the Gitea API implementation. |  | ||||||
|  | Tea is a command line tool for interacting on one or more Gitea instances. | ||||||
|  | It uses [code.gitea.io/sdk](https://code.gitea.io/sdk) and interacts with the Gitea API | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ## Installation | ## Installation | ||||||
|  |  | ||||||
| Currently no prebuilt binaries are provided. | You can use the prebuilt binaries from [dl.gitea.io](https://dl.gitea.io/tea/) | ||||||
| To install, a Go installation is needed. |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | To install from source, go 1.12 or newer is required: | ||||||
| ```sh | ```sh | ||||||
| go get code.gitea.io/tea | go get code.gitea.io/tea | ||||||
| go install 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: |  | ||||||
|  |  | ||||||
| ```sh | Or if you have `brew` installed, you can install `tea` via: | ||||||
| export PATH=$PATH:$GOROOT/bin:$GOPATH/bin |  | ||||||
| ``` |  | ||||||
|  |  | ||||||
| If you have `brew` installed, you can install tea version via: |  | ||||||
|  |  | ||||||
| ```sh | ```sh | ||||||
| brew tap gitea/tap https://gitea.com/gitea/homebrew-gitea | brew tap gitea/tap https://gitea.com/gitea/homebrew-gitea | ||||||
| brew install --devel tea | brew install tea | ||||||
| ``` | ``` | ||||||
|  |  | ||||||
| ## Usage | ## Usage | ||||||
| @@ -42,23 +37,32 @@ Use this token to login with `tea`: | |||||||
| tea login add --name=try --url=https://try.gitea.io --token=xxxxxx | tea login add --name=try --url=https://try.gitea.io --token=xxxxxx | ||||||
| ``` | ``` | ||||||
|  |  | ||||||
| Now you can use the `tea` commands: | Now you can use the following `tea` subcommands. | ||||||
|  | Detailed usage information is available via `tea <command> --help`. | ||||||
|  |  | ||||||
| ```sh | ```sh | ||||||
| tea issues | login            Log in to a Gitea server | ||||||
| tea releases | logout           Log out from a Gitea server | ||||||
|  | issues           List, create and update issues | ||||||
|  | pulls            List, checkout and clean pull requests | ||||||
|  | releases         Create 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 | ||||||
| ``` | ``` | ||||||
|  |  | ||||||
| To fetch issues from different repos, use the `--remote` flag (when inside a gitea repository directory) or `--login` & `--repo` flags. | To fetch issues from different repos, use the `--remote` flag (when inside a gitea repository directory) or `--login` & `--repo` flags. | ||||||
|  |  | ||||||
| ## Compilation | ## Compilation | ||||||
|  |  | ||||||
|  | Make sure you have installed a current go version. | ||||||
| To compile the sources yourself run the following: | To compile the sources yourself run the following: | ||||||
|  |  | ||||||
| ```sh | ```sh | ||||||
| go get code.gitea.io/tea | git clone https://gitea.com/gitea/tea.git | ||||||
| cd "${GOPATH}/src/code.gitea.io/tea" | cd tea | ||||||
| go build | make | ||||||
| ``` | ``` | ||||||
|  |  | ||||||
| ## Contributing | ## Contributing | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 6543
					6543