Open git repositories in a web browser with git open
.
This project was inspired by git-open.
# open repository in browser
git open
# open current commit
git open -c
# open current branch
git open -b
# open pull request for current branch
# local branch/head must match the pull request branch
# only supported for GitHub
git open --pr
# default remote name is `origin`
# can specify a different remote with `-r`
git open -r upstream
# print only
git open -p
You can clone the repo and install from source. This requires you to have rust installed.
git clone git@github.com:jsgv/git-open.git
cd git-open
make install
cargo install cargo-git-open
Or you can download one of the binaries from the releases section and place it
somewhere in your $PATH
.
I wanted to learn Rust.