You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
561 B
22 lines
561 B
# Open the GitHub repository in the browser. |
|
local url=$( |
|
git config -l \ |
|
| grep "remote.origin.url" \ |
|
| sed -En "s/remote.origin.url=(git|https?)(@|:\/\/)github.com(:|\/)(.+)\/(.+).git/https:\/\/github.com\/\4\/\5/p" |
|
) |
|
|
|
if [[ -n "$url" ]]; then |
|
url="${url}/tree/${$(git-branch):-master}" |
|
|
|
if (( $+commands[$BROWSER] )); then |
|
"$BROWSER" "$url" |
|
return 0 |
|
else |
|
print "fatal: Browser not set or set to a non-existent browser." >&2 |
|
return 1 |
|
fi |
|
else |
|
print "fatal: Not a Git repository or origin remote not set." >&2 |
|
return 1 |
|
fi |
|
|
|
|