git open - A shell script
git open
is a fantastic tool. I use it so much it has valuable bash real-estate:
alias o='git open'
Type git open
to open a repo website in your browser.
git open
You can open a commit:
git open --commit
An issue, if your branches use a naming convention of issues/#123:
git open --issue
And even a specific remote branch:
git open upstream master
It’s a surprisingly useful simple tool. Check it out. I think you’ll like it.