Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jvillarejo/gitorinox
The Github Army Knife
https://github.com/jvillarejo/gitorinox
Last synced: 24 days ago
JSON representation
The Github Army Knife
- Host: GitHub
- URL: https://github.com/jvillarejo/gitorinox
- Owner: jvillarejo
- License: mit
- Created: 2015-03-31T03:42:33.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-31T03:59:24.000Z (over 9 years ago)
- Last Synced: 2024-09-13T17:53:24.331Z (about 2 months ago)
- Language: Ruby
- Size: 125 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this 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_PASSWORDHere 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 grepExample
$ 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