An open API service indexing awesome lists of open source software.

https://github.com/niradler/github-kit-cli

github sdk wrapper to run as cli.
https://github.com/niradler/github-kit-cli

cli github

Last synced: about 1 month ago
JSON representation

github sdk wrapper to run as cli.

Awesome Lists containing this project

README

          

# github-kit-cli

github sdk wrapper to run as cli, to get more details on params and options go to [octokit](https://octokit.github.io/rest.js)

## Usage

### Basic

```
gkc --help
```

```
gkc store -a="github-api-key"
```

```
gkc search repos -p="q=org:niradler"
```

```

gkc any search repos -p="q=org:niradler"
```

### Advance

```
gkc repos listForUser --params="username=niradler" --map="name" --filter="fork=true"
gkc repos listForUser --params="username=niradler&per_page=100" --map="name,has_issues,fork" -f="fork=false" -o="table"
```