Crates.io | gho |
lib.rs | gho |
version | 0.4.0 |
source | src |
created_at | 2023-01-11 16:31:37.938549 |
updated_at | 2023-10-24 12:52:12.431154 |
description | cli to open your repo in the Github/Gitlab web ui |
homepage | |
repository | https://github.com/chevdor/gho |
max_upload_size | |
id | 756532 |
size | 161,109 |
A simple multi-platform cli utility written in Rust that opens your browser in your project’s repo on gitlab or github.
While a bash script like the following could work, that will not work on Windows:
gho ()
{
( set -e;
git remote -v | grep push;
remote=${1:-origin};
echo "Using remote $remote";
URL=$(git config remote.$remote.url | sed "s/git@\(.*\):\(.*\).git/https:\/\/\1\/\2/");
echo "Opening $URL...";
open $URL )
}
gho
on the other hand, should work fine (testers and feedback are welcome).
The url is fetched on your remotes.
cargo install --locked --git https://github.com/chevdor/gh
gho
to simply open the first remote
gho upstream
to open your upstream
remote
Command line utility for the tera templating engine. You need to provide a template using the tera syntax as well as some data (various format are supported)
Usage: gho [REMOTE]
Arguments:
[REMOTE] Name of a remote
Options:
-h, --help Print help
-V, --version Print version