Last active
August 29, 2015 14:08
-
-
Save andrewjtait/9114245e92b84d69aa43 to your computer and use it in GitHub Desktop.
GitHub Bash Function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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})" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This has now been set up in a repository which is installable through Homebrew: https://github.com/andrewjtait/github-open