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

https://github.com/schultyy/monotes


https://github.com/schultyy/monotes

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

[![Build
Status](https://travis-ci.org/schultyy/monotes.svg?branch=master)](https://travis-ci.org/schultyy/monotes)
[![Code
Climate](https://codeclimate.com/github/schultyy/monotes/badges/gpa.svg)](https://codeclimate.com/github/schultyy/monotes)
# Monotes

Monotes is a GitHub Issues commandline client.

## Installation

Add this line to your application's Gemfile:

gem 'monotes'

And then execute:

$ bundle

Or install it yourself as:

$ gem install monotes

## Usage

### Login to GitHub

```bash
$ monotes login
Username:
Password:
```

### Login with Two-Factor Authentication

```bash
$ monotes login
Username:
Password:
Your 2FA token:
```

### Download issues for repository

```bash
$ monotes download 'schultyy/monotes'
```

### Browse downloaded issues

```bash
$ monotes show 'schultyy/monotes'
```

### Create a new issue

```bash
$ monotes create 'schultyy/monotes'
```

Then `vim` opens and you can insert your issue content in markdown. When
you save and quit, the issue gets created.

### Push issues

```bash
$ monotes push 'schultyy/monotes'
```

## Contributing

1. Fork it ( https://github.com/[my-github-username]/monotes/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