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.
- Host: GitHub
- URL: https://github.com/daniel-hayes/hubo
- Owner: daniel-hayes
- License: mit
- Created: 2018-02-14T02:42:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-14T03:27:31.000Z (over 8 years ago)
- Last Synced: 2025-02-17T13:26:14.337Z (over 1 year ago)
- Topics: command-line-tool, github, shell
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.