github-issues

List of GitHub issues. (by all repository)
Installation
Download from releases and stored in the $PATH.
Or with golang:
go get github.com/i2bskn/github-issues
Settings
Required Personal Access Token of GitHub.
Personal Access Token must be able to get in the git-config command.
[github]
token = <personal access token>
Usage
Just run the following command!
github-issues
Options
| Long |
Short |
Default |
Description |
| --page |
-p |
1 |
Specify further pages |
| --per-page |
-n |
100 |
Specify a custom page size |
Filter
| Long |
Short |
Default |
Description |
| --assigned |
-a |
none |
Issues assigned to you |
| --created |
-c |
none |
Issues created by you |
| --mentioned |
-m |
none |
Issues mentioning you |
State
Specify the state of the issues to display in --state.
Can be either open, closed, all.
Sort
Specify the sort of the issues to display in --sort.
Can be either created, updated, comments.
You can specify the format in --format or -f.
| Symbol |
Description |
| %n |
Issue number |
| %l |
URL |
| %t |
Title |
| %u |
User |
Default format: %n\t%l\t%t\t%u
Personal Access Token
Specify the token to be used for access to the github.
It is priority than in the .gitconfig.
Option Specified Example
github-issue -n 5 -a --format="%t"