From 9725c0dbc20d4bba1fb189f36a810778668aeed9 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Fri, 30 Jul 2010 22:26:08 +0200 Subject: [PATCH] comment update --- .zsh/func/giturl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.zsh/func/giturl b/.zsh/func/giturl index e4dfa5f..c4dd9de 100755 --- a/.zsh/func/giturl +++ b/.zsh/func/giturl @@ -2,7 +2,8 @@ # # func/giturl # -# a convenient way to display the gitweb URL of a commit-ish +# A convenient way to display the gitweb URL of a commit-ish, as well as the +# base URL and tree. Also for each argument, the tree or blob URL is printed. # # Copyright © 2010 martin f. krafft # Released under the terms of the Artistic Licence 2.0 @@ -18,8 +19,9 @@ REMOTE=$(git config --get remote.origin.url) local part case "$REMOTE" in - madduck:pub/*) + madduck:pub/*|ssh://git.madduck.net/madduck/pub/*) part="${REMOTE#madduck:pub/}" + part="${part#ssh://git.madduck.net/madduck/pub/}" part="${part%.git}.git" ;; *) -- 2.39.2