• Stars
    star
    264
  • Rank 149,438 (Top 4 %)
  • Language
    Ruby
  • License
    MIT License
  • Created about 12 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

GitHub on your command line. Use your terminal, not the browser.
github api logo

GithubCLI

Gem Version Build Status Build status Maintainability Coverage Status Inline docs

GitHub on your command line. User your terminal, not the browser. Works hand-in-hand with github_api gem.

Interface

Installation

Add this line to your application's Gemfile:

gem 'github_cli'

And then execute:

$ bundle

Or install it yourself as:

$ gem install github_cli

Contents

1. Usage

Run it:

$ gcli

2. Interface

2.1 Configuration file

The first step is to create a configuration file, either global in home directory or local inside the project:

$ gcli init [--local|-l]

Without any options this command will setup a .gcliconfig configuration file in your home directory with all the global settings. By passing --local option the config file will be created locally in the current directory.

Main configuration options are:

user.token            # Authentication token
user.login            # User login
user.password         # User password
user.name             # Default user name
user.repo             # Default repo name
user.org              # Default organization name
core.editor           # Editor to be opened
core.endpoint         # The api endpoint, by default https://api.github.com
core.site             # The web endpoint, by default https://github.com
core.pager            # Pager to be used, by default less
core.format           # Output formating
core.quiet            # Surpass output to show only response status
core.ssl              # SSL settings
core.auto_pagination  # Switch on default results pagination, default false

Moreover, gcli config command allows you to set/get any configuration option such as output format, editor or oauth token.

For instance, to check value for your authentication token do

$ gcli config user.token

And to set the value do

$ gcli config user.token lh23l4kj234....

To list specific options

$ gcli config --list [regex]

To edit config in your favourite editor:

$ gcli config -e

Finally, to see a manpage about available configuration options do

$ gcli help config

2.2 Authorization

To create oauth tokens you need to setup your basic authentication.

You can either set it up manually like so

$ gcli init
$ gcli config user.login '...'
$ gcli config user.password '...'

Then to create your token do

$ gcli auth create --scopes=repo --note=github_cli --note-url=http://github.com/piotrmurach/github_cli

Alternatively authorize command has been provided that will guide you through authentication process by asking questions and then save the credentials to .githubrc file. Example

$ gcli authorize

To see your current tokens do

$ gcli auth ls

To see current tokens without configuration file pass --login and --password flags like so

$ gcli auth ls --login=... --password=...

Finally to add the token to your config do

$ gcli config user.token '...'

2.3. Arguments

The required arguments come first as per command description, then are followed by the optional arguments supplied as specific options.

For instance, one can create repository by supplying parameters in the following way:

$ gcli repo create github_api --desc='Test repo for kitty.'

To create repository inside organization:

$ gcli repo create github/github_api --desc='Test repo for kitty.'

To provide array argument, pass space delimited strings like so

$ gcli hook create <user> <repo> --events=push issues status

To provide hash argument, pass space delimited key:value pairs such as

$ gcli hook create <user> <repo> --config=url:"http://example.com/path" content_type:json

To find out which options are required and which are optional use help command:

$ gcli repo help create

2.4. Listing commands

You can list all GitHub APIs commands:

$ gcli list

to limit returned results pass pattern

$ gcli list re*   # Returns all commands matching the pattern

2.5. Subcommands

To see a list of subcommands that a given command provides just type top-level command like so

$ gcli repo

2.5. Output formatting

The API responses can be formatted as csv or table.

By default responses are in tabular format. Tables are available in horizontal and vertical mode. To enforce table display pass :h and :v respectively. Otherwise a default orientation will be picked depending on the request made and terminal size.

Command

To get csv formatting for easy command piping do

gcli repo ls -u wycats --format=csv

To suppress output pass --quiet option like so

gcli repo create ... --quiet=true

2.6. Output paging

By default all responses are paged. You can switch off paging by supplying no-pager flag.

gcli --no-pager user ls -u wycats

Also you can supply you preferred pager, otherwise the paging program is taken from environment variable PAGER if defined or defaults to "less".

3. API

Interact with git data:

$ gcli blob
$ gcli commit
$ gcli ref
$ gcli tag
$ gcli tree

Interact with issues:

$ gcli issue
$ gcli label
$ gcli milestone
$ gcli comment

Interact with repositories:

$ gcli repo
$ gcli collab
$ gcli content
$ gcli download
$ gcli fork
$ gcli hook
$ gcli key

Interact with activities:

$ gcli star
$ gcli watch
$ gcli event

Interact with gists:

$ gcli gist

Interact with users:

$ gcli user
$ gcli email
$ gcli follower

Interact with organizations:

$ gcli org
$ gcli member
$ gcli team

Interact with authorizations:

$ gcli auth

Interact with search:

$ gcli search

4. Development

The test suite includes both unit tests and end-to-end tests. The unit tests are in spec folder and can be run:

$ bundle exec rake spec

The end-to-end tests are in features folder and can be run:

$ bundle exec rake features

In order to run all the tests run:

$ bundle exec rake [ci]

Contributing

This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

Bug reports and pull requests are welcome.

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Copyright

Copyright (c) 2012 Piotr Murach. See LICENSE for further details.

More Repositories

1

tty

Toolkit for developing sleek command line apps.
Ruby
2,472
star
2

tty-prompt

A beautiful and powerful interactive command line prompt
Ruby
1,418
star
3

github

Ruby interface to GitHub API
Ruby
1,132
star
4

finite_machine

A minimal finite state machine with a straightforward syntax.
Ruby
802
star
5

pastel

Terminal output styling with intuitive and clean API.
Ruby
628
star
6

rspec-benchmark

Performance testing matchers for RSpec
Ruby
584
star
7

tty-spinner

A terminal spinner for tasks that have non-deterministic time frame.
Ruby
421
star
8

tty-progressbar

Display a single or multiple progress bars in the terminal.
Ruby
415
star
9

loaf

Manages and displays breadcrumb trails in Rails app - lean & mean.
Ruby
404
star
10

tty-command

Execute shell commands with pretty output logging and capture stdout, stderr and exit status.
Ruby
397
star
11

tty-markdown

Convert a markdown document or text into a terminal friendly output.
Ruby
303
star
12

tty-logger

A readable, structured and beautiful logging for the terminal
Ruby
291
star
13

tty-table

A flexible and intuitive table generator
Ruby
183
star
14

tty-box

Draw various frames and boxes in your terminal window
Ruby
177
star
15

awesome-ruby-cli-apps

A curated list of awesome command-line applications in Ruby.
Ruby
159
star
16

rack-policy

Rack middleware for the EU ePrivacy Directive compliance in Ruby Web Apps
Ruby
147
star
17

tty-pie

Draw pie charts in your terminal window
Ruby
138
star
18

necromancer

Conversion from one object type to another with a bit of black magic.
Ruby
135
star
19

strings

A set of useful functions for transforming strings.
Ruby
127
star
20

coinpare

Compare cryptocurrency trading data across multiple exchanges and blockchains in the comfort of your terminal
Ruby
109
star
21

tty-exit

Terminal exit codes.
Ruby
100
star
22

strings-case

Convert strings between different cases.
Ruby
95
star
23

tty-reader

A set of methods for processing keyboard input in character, line and multiline modes.
Ruby
85
star
24

tty-option

A declarative command-line parser
Ruby
84
star
25

merkle_tree

A merkle tree is a data structure used for efficiently summarizing sets of data, often one-time signatures.
Ruby
83
star
26

tty-screen

Terminal screen detection - cross platform, major ruby interpreters
Ruby
83
star
27

verse

[DEPRECATED] Text transformations
Ruby
71
star
28

tty-cursor

Terminal cursor movement and manipulation of cursor properties such as visibility
Ruby
68
star
29

supervision

Write distributed systems that are resilient and self-heal.
Ruby
66
star
30

tty-file

File manipulation utility methods
Ruby
65
star
31

tty-config

A highly customisable application configuration interface for building terminal tools.
Ruby
61
star
32

benchmark-trend

Measure performance trends of Ruby code
Ruby
59
star
33

tty-font

Terminal fonts
Ruby
58
star
34

lex

Lex is an implementation of lex tool in Ruby.
Ruby
56
star
35

tty-tree

Print directory or structured data in a tree like format
Ruby
56
star
36

strings-truncation

Truncate strings with fullwidth characters and ANSI codes.
Ruby
49
star
37

tty-pager

Terminal output paging - cross-platform, major ruby interpreters
Ruby
39
star
38

tty-color

Terminal color capabilities detection
Ruby
35
star
39

slideck

Present Markdown-powered slide decks in the terminal.
Ruby
34
star
40

strings-inflection

Convert between singular and plural forms of English nouns
Ruby
31
star
41

tty-link

Hyperlinks in your terminal
Ruby
31
star
42

tty-platform

Operating system detection
Ruby
29
star
43

tty-sparkline

Sparkline charts for terminal applications.
Ruby
29
star
44

tty-editor

Opens a file or text in the user's preferred editor
Ruby
27
star
45

communist

Library for mocking CLI calls to external APIs
Ruby
25
star
46

splay_tree

A self-balancing binary tree optimised for fast access to frequently used nodes.
Ruby
24
star
47

equatable

Allows ruby objects to implement equality comparison and inspection methods.
Ruby
24
star
48

minehunter

Terminal mine hunting game.
Ruby
23
star
49

rotation.js

Responsive and mobile enabled jQuery plugin to help create rotating content.
JavaScript
22
star
50

strings-numeral

Express numbers as string numerals
Ruby
20
star
51

strings-ansi

Handle ANSI escape codes in strings
Ruby
19
star
52

benchmark-malloc

Trace memory allocations and collect stats
Ruby
19
star
53

tty-which

Cross-platform implementation of Unix `which` command
Ruby
17
star
54

tty-runner

A command routing tree for terminal applications
Ruby
12
star
55

benchmark-perf

Benchmark execution time and iterations per second
Ruby
12
star
56

impact

Ruby backend for Impact.js framework
Ruby
8
star
57

queen

English language linter to hold your files in high esteem.
Ruby
8
star
58

pastel-cli

CLI tool for intuitive terminal output styling
Ruby
7
star
59

dotfiles

Configuration files for Unix tools
Vim Script
7
star
60

tty-markdown-cli

CLI tool for displaying nicely formatted Markdown documents in the terminal
Ruby
7
star
61

static_deploy

Automate deployment of static websites
Ruby
6
star
62

tenpin

Terminal tenpin bowling game
Ruby
4
star
63

tytus

Helps you manage page titles in your Rails app.
Ruby
3
star
64

tty.github.io

TTY toolkit website.
SCSS
2
star
65

peter-murach.github.com

Personal webpage
JavaScript
2
star
66

wc.rb

A Ruby clone of Unix wc utility.
Ruby
2
star
67

exportable

Rails plugin to ease exporting tasks.
Ruby
1
star
68

capistrano-git-stages

Multistage capistrano git tags
Ruby
1
star
69

tabster

Ruby
1
star
70

leek

Cucumber steps and RSpec expectations for command line apps
Ruby
1
star
71

unicorn.github.io

Website for the github_api and github_cli ruby gems.
CSS
1
star
72

tty-color-cli

CLI tool for terminal color capabilities detection
Ruby
1
star
73

finite_machine.github.io

Website for finite_machine Ruby gem
SCSS
1
star
74

strings-wrapping

Wrap strings with fullwidth characters and ANSI codes
Ruby
1
star