Project

gitorinox

0.0
No commit activity in last 3 years
No release in over 3 years
You can list your repositories, and unwatch them
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

~> 0.6.4
~> 0.12.3
 Project Readme

Gitorinox

Gitorinox is the Army Knife for Github. It's a command line tool that let you interact with Github API

Installation

Install it yourself as:

$ gem install gitorinox

Usage

For every command you have to put your github credentials using this options

$ gitorinox -l YOUR_LOGIN_USERNAME -p YOUR_LOGIN_PASSWORD

Here are the currently supported commands

List

It list all your currently watched repositories and outputs on standard output.

Example:

$ gitorinox list -l YOUR_LOGIN_USERNAME -p YOUR_LOGIN_PASSWORD

You can also pass another option -m that filters the repositories that match the repository name with the option param. It's like a UNIX grep

Example

$ gitorinox list -l YOUR_LOGIN_USERNAME -p YOUR_LOGIN_PASSWORD -m 2015

It will output all the repositories which the name contains a 2015 substring

Unwatch

It unwatches the repositories you are currently watched repositories. The optinal matching param name is required for this action.

Example:

$ gitorinox unwatch -l YOUR_LOGIN_USERNAME -p YOUR_LOGIN_PASSWORD -m 2015

Gitorinox will unwatch all the repositories that match 2015 in the repository name

Contributing

  1. Fork it ( https://github.com/jvillarejo/gitorinox/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request