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

https://github.com/daniel-hayes/hubo

When you want to save half a second opening your GitHub repository.
https://github.com/daniel-hayes/hubo

command-line-tool github shell

Last synced: about 2 months ago
JSON representation

When you want to save half a second opening your GitHub repository.

Awesome Lists containing this project

README

          

# hubo

### hubo == "git(hub) (o)pen"

This is just another command line utility for GitHub that allows you to:
- Quickly open your repository.
- Open files / directory paths on your current branch / commit.
- Open your pull requests page.
- Open your issues page.

# Installation

Install / Uninstall:
```
sudo make install/uninstall
```

# Examples

```sh
$ hubo
# opens https://github.com/REMOTE_USER/REPO/tree/BRANCH

$ hubo [path] [line number]
# EX: $ hubo src/myfile.js 34
# opens https://github.com/REMOTE_USER/REPO/blob/BRANCH/src/myfile.js#L34

$ hubo pr
# opens https://github.com/REMOTE_USER/REPO/pulls

$ hubo issues
# opens https://github.com/REMOTE_USER/REPO/issues
```

# TODO
- Add the ability to open your repository on any branch without having to check it out first.