Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c-bata/gh-prompt
An interactive GitHub CLI featuring auto-complete.
https://github.com/c-bata/gh-prompt
cli github
Last synced: 17 days ago
JSON representation
An interactive GitHub CLI featuring auto-complete.
- Host: GitHub
- URL: https://github.com/c-bata/gh-prompt
- Owner: c-bata
- License: mit
- Created: 2020-02-13T11:06:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-21T16:27:53.000Z (about 4 years ago)
- Last Synced: 2024-10-08T21:06:31.693Z (about 1 month ago)
- Topics: cli, github
- Language: Go
- Homepage:
- Size: 31.3 KB
- Stars: 54
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gh-prompt
![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)
[![GoDoc](https://godoc.org/github.com/c-bata/gh-prompt?status.svg)](https://godoc.org/github.com/c-bata/gh-prompt)An interactive GitHub CLI featuring auto-complete. This tool provides powerful completion to GitHub's official CLI.
[![GIF animation](https://github.com/c-bata/assets/raw/master/gh-prompt/gh-prompt.gif)](#)
You can walk through issues, create pull requests, checkout pull requests locally, and more.
See https://cli.github.com/ for details.## Installation
### Homebrew (for macOS users)
```
$ brew install c-bata/gh-prompt/gh-prompt
```### Downloading standalone binary
Binaries are available from [github release](https://github.com/c-bata/gh-prompt/releases).
macOS (darwin) - amd64
```
wget https://github.com/c-bata/gh-prompt/releases/download/v0.0.1/gh-prompt_darwin_x86_64.zip
unzip gh-prompt_darwin_x86_64.zip
chmod +x gh-prompt
sudo mv ./gh-prompt /usr/local/bin/gh-prompt
```Linux - amd64
```
wget https://github.com/c-bata/gh-prompt/releases/download/v0.0.1/gh-prompt_linux_x86_64.zip
unzip gh-prompt_linux_x86_64.zip
chmod +x gh-prompt
sudo mv ./gh-prompt /usr/local/bin/gh-prompt
```Linux - i386
```
wget https://github.com/c-bata/gh-prompt/releases/download/v0.0.1/gh-prompt_linux_i386.zip
unzip gh-prompt_linux_i386.zip
chmod +x gh-prompt
sudo mv ./gh-prompt /usr/local/bin/gh-prompt
```### Building from source
```
$ git clone [email protected]:c-bata/gh-prompt.git
$ cd gh-prompt
$ make build
```You can create multi-platform binaries via goreleaser:
```
$ goreleaser --snapshot --skip-publish --rm-dist
```## LICENSE
This software is licensed under the MIT License (See [LICENSE](./LICENSE)).