Created
January 20, 2011 22:23
-
-
Save idris/788810 to your computer and use it in GitHub Desktop.
command-line utility that opens a browser to the given file/directory in GitHub.
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
#!/bin/bash | |
FILE=$1 | |
if [ -d $FILE ]; then | |
DIR=$FILE | |
else | |
DIR=`dirname $FILE` | |
fi | |
function parse_git_branch { | |
local branch=`cd $DIR;git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'` | |
if [ "$branch" == "" ]; then | |
exit 1 | |
else | |
echo $branch | |
fi | |
} | |
function parse_github_repo { | |
echo `cd $DIR;git config -l | grep 'remote.origin.url' | sed -En 's/remote.origin.url=git(@|:\/\/)github.com(:|\/)(.+)\/(.+).git/\3\/\4/p'` | |
} | |
function get_path { | |
if [ -d $FILE ]; then | |
FOO=`(cd $FILE; pwd)` | |
else | |
FOO=`(cd $DIR; pwd)`/`basename $FILE` | |
fi | |
PWD=`cd $DIR;cd $(git rev-parse --show-toplevel);pwd` | |
LEN=${#PWD} | |
LEN=$((LEN+1)) | |
echo ${FOO:LEN} | |
} | |
function tree_or_blob { | |
if [ -d $FILE ]; then | |
echo 'tree' | |
else | |
echo 'blob' | |
fi | |
} | |
URL="https://github.com/$(parse_github_repo)/$(tree_or_blob)/$(parse_git_branch)/$(get_path)" | |
if [ "`which gnome-www-browser`" != "" ]; then | |
gnome-www-browser $URL | |
else | |
open $URL | |
fi |
Done! Thanks
You might be happier with life if you didn't write things in Bash.
Just sayin'. >_>
Ryan, haven't you been writing PHP the past 2 weeks? Just sayin'
Exactly, I know pain when it's staring me in the face, so my word is legit. ;0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want it to work on linux (Gnome), I'd replace the bottom line with: