 Norwin
		
	
	
		78a95f1ca4
		
	
	
	
	Allow editing multiline prompts with external text editor (#429)
			Norwin
		
	
	
		78a95f1ca4
		
	
	
	
	Allow editing multiline prompts with external text editor (#429)
		
			
			- Adds a new `Preferences` struct to the config, initially only containing `Editor: bool (default false)`. This struct will be serialized to configs once there is a first tea induced change to the config (eg `tea login default <name>` or `tea login add`). - Use external editor for all multiline prompts if preferred. We already had a function for starting a texteditor for diff reviews; it does not really make sense to replace it with `survey.Editor`, as there is a big interface mismatch: survey expects strings as inputs, while our diff functions operate on files, fixes #424 Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/429 Reviewed-by: Andrew Thornton <art27@cantab.net> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
 T E A
 T E A
The official CLI for Gitea
   tea - command line tool to interact with Gitea
   version 0.7.0-preview
 USAGE
   tea command [subcommand] [command options] [arguments...]
 DESCRIPTION
   tea is a productivity helper for Gitea.  It can be used to manage most entities on one
   or multiple Gitea instances and provides local helpers like 'tea pull checkout'.
   tea makes use of context provided by the repository in $PWD if available, but is still
   usable independently of $PWD. Configuration is persisted in $XDG_CONFIG_HOME/tea.
 COMMANDS
   help, h  Shows a list of commands or help for one command
   ENTITIES:
     issues, issue, i                  List, create and update issues
     pulls, pull, pr                   Manage and checkout pull requests
     labels, label                     Manage issue labels
     milestones, milestone, ms         List and create milestones
     releases, release, r              Manage releases
     times, time, t                    Operate on tracked times of a repository's issues & pulls
     organizations, organization, org  List, create, delete organizations
     repos, repo                       Show repository details
   HELPERS:
     open, o                         Open something of the repository in web browser
     notifications, notification, n  Show notifications
   SETUP:
     logins, login                  Log in to a Gitea server
     logout                         Log out from a Gitea server
     shellcompletion, autocomplete  Install shell completion for tea
 OPTIONS
   --help, -h     show help (default: false)
   --version, -v  print the version (default: false)
 EXAMPLES
   tea login add                       # add a login once to get started
   tea pulls                           # list open pulls for the repo in $PWD
   tea pulls --repo $HOME/foo          # list open pulls for the repo in $HOME/foo
   tea pulls --remote upstream         # list open pulls for the repo pointed at by
                                       # your local "upstream" git remote
   # list open pulls for any gitea repo at the given login instance
   tea pulls --repo gitea/tea --login gitea.com
   tea milestone issues 0.7.0          # view open issues for milestone '0.7.0'
   tea issue 189                       # view contents of issue 189
   tea open 189                        # open web ui for issue 189
   tea open milestones                 # open web ui for milestones
   # send gitea desktop notifications every 5 minutes (bash + libnotify)
   while :; do tea notifications --mine -o simple | xargs -i notify-send {}; sleep 300; done
 ABOUT
   Written & maintained by The Gitea Authors.
   If you find a bug or want to contribute, we'll welcome you at https://gitea.com/gitea/tea.
   More info about Gitea itself on https://gitea.io.
- Compare features with other git forge CLIs
- tea uses code.gitea.io/sdk and interacts with the Gitea API.
Installation
There are different ways to get tea:
- 
Install via your system package manager: 
- 
Use the prebuilt binaries from dl.gitea.io 
- 
Install from source (go 1.13 or newer is required): go get code.gitea.io/tea go install code.gitea.io/tea
- 
Docker (thirdparty): tgerczei/tea 
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 STATIC=true
Contributing
Fork -> Patch -> Push -> Pull Request
- make testrun testsuite
- make vetrun checks (check the order of imports; preventing failure on CI pipeline beforehand)
- make vendorwhen 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.
Description
				
								v0.9.2
								
	Latest
							
						
					Languages
				
				
								
								
									Go
								
								98.3%
							
						
							
								
								
									Makefile
								
								1.1%
							
						
							
								
								
									Shell
								
								0.4%
							
						
							
								
								
									PowerShell
								
								0.1%
							
						
					