Abra a página da web de solicitação de pull do Bitbucket na linha de comando

Adicione estas funções ao seu .bashrc

function pullrequest() {
    remote
=$(command git remote -v | head -1 | sed "s/.*:(.*).git.*/1/")
    
if [[ -n ${remote} ]] ; then
        gnome
-open https://bitbucket.org/$remote/pull-request/new > /dev/null 2> /dev/null
    
else
        echo
Not found remote
    
fi
}

Para Mac OS X, você pode substituir gnome-openpor open.