Gho is a Fish shell function that quickly opens pages in the current GitHub repository, like pull requests, issues, or specific paths, directly in your browser.
function gho
open https://(git config --get remote.origin.url|sed -e s/.git//g|sed s,:,/,g)/$argv
end
With gho, you can :
gho pulls to open pull requests page.
gho issues to open issues page.
gho pull/12 to open pull #12.
gho something to open current directory's repo's URL/something.