From: martin f. krafft Date: Fri, 30 Jul 2010 20:26:08 +0000 (+0200) Subject: comment update X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/9725c0dbc20d4bba1fb189f36a810778668aeed9 comment update --- 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" ;; *)