Skip to content

Instantly share code, notes, and snippets.

@andrewjtait
Last active August 29, 2015 14:08
Show Gist options
  • Save andrewjtait/9114245e92b84d69aa43 to your computer and use it in GitHub Desktop.
Save andrewjtait/9114245e92b84d69aa43 to your computer and use it in GitHub Desktop.
GitHub Bash Function
function github {
branch="$(git rev-parse --abbrev-ref HEAD)"
url="$(git config --get remote.origin.url)"
url=${url/git@github.com:/http://github.com/}
url=${url/.git/}
if [[ $1 =~ "compare" ]]; then action="compare"
elif [[ $1 =~ "pr" ]]; then action="pull"
else action="tree"; fi
if [[ $2 != "" ]]; then base="$2..."
else base=""; fi
url="${url}/${action}/${base}${branch}"
echo "Opening ${url} $(\open ${url})"
}
@andrewjtait
Copy link
Author

This has now been set up in a repository which is installable through Homebrew: https://github.com/andrewjtait/github-open

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment