Skip to content

Instantly share code, notes, and snippets.

View bassdread's full-sized avatar

bassdread

  • UK
View GitHub Profile
@1stvamp
1stvamp / open-pull-request.sh
Last active September 23, 2019 10:51
Shortcut script to open a pull-request on Github from a local git repo
#!/usr/bin/env bash
if [[ $(uname -s) == "Linux" ]]; then
browse="xdg-open"
else
browse="open"
fi
repo=$(git remote show -n origin 2>/dev/null|sed -e "/Push URL:*/!d; s/.*git@github.com:\(.*\).git/\1/; q")
branch=$(git branch --no-color 2>/dev/null|sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/')