Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pocke/whichpr
Find the pull request from commit hash.
https://github.com/pocke/whichpr
Last synced: about 2 months ago
JSON representation
Find the pull request from commit hash.
- Host: GitHub
- URL: https://github.com/pocke/whichpr
- Owner: pocke
- License: apache-2.0
- Created: 2017-05-07T09:01:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-25T03:48:17.000Z (almost 6 years ago)
- Last Synced: 2024-06-20T05:06:19.657Z (6 months ago)
- Language: Go
- Homepage:
- Size: 27.3 KB
- Stars: 86
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WhichPR
Find the pull request from commit hash.
![A screen capture](https://user-images.githubusercontent.com/4361134/34467899-87456686-ef40-11e7-8a7a-6cb52a8324e0.gif)
## Installation
You can download a binary from release page. Please download a binary and place it in `$PATH` directory.
https://github.com/pocke/whichpr/releases### OAuth token setting
First time, whichpr asks GitHub username and password.
```bash
$ whichpr open
github.com username:
github.com password for pocke (never stored):
two-factor authentication code:
```If you don't want to enter your password, you can register a personal access token manually.
1. Generate a token from [here](https://github.com/settings/tokens/new).
- `repo` scope is required if you want to access your private repositories.
1. Create `~/.config/whichpr` with the following content.
```
github.com:
- user:
oauth_token:
protocol: https
```## Usage
```bash
$ whichpr show SHA1 # => Display a pull request number
$ whichpr open SHA1 # => Open a pull request by your browser
```### Vim integration
Add the following code to your `.vimrc`.
```vim
set rtp+=~/path/to/pocke/whichpr/" If you need keybind, please configure yourself.
" For example:
nnoremap :call whichpr#open()
```Execute the following command to open a pull request.
```vim
:call whichpr#open()
```## Links
- https://medium.com/@pocke/whichpr-find-a-pull-request-with-a-commit-hash-c2defe4e0b58
- http://qiita.com/pocke/items/281e9157a530a6142178 (Japanese blog)## License
Copyright 2017-2018 Masataka Kuwabara (pocke)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.