X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/e00e7f7a1886640cc18d114a48a1ddf75cebdfa4..26ffc95f66633e04e63ddce54c6161c5ce80b6b7:/.zsh/func/giturl diff --git a/.zsh/func/giturl b/.zsh/func/giturl deleted file mode 100755 index f001308..0000000 --- a/.zsh/func/giturl +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# -# func/giturl -# -# a convenient way to display the gitweb URL of a commit-ish -# -# Copyright © 2010 martin f. krafft -# Released under the terms of the Artistic Licence 2.0 -# -# Source repository: git://git.madduck.net/etc/zsh.git -# - -local GITWEB_BASE -GITWEB_BASE=http://git.madduck.net/v - -local REMOTE -REMOTE=$(git config --get remote.origin.url) - -local part -case "$REMOTE" in - madduck:pub/*) - part="${REMOTE#madduck:pub/}" - part="${part%.git}.git" - ;; - *) - echo >&2 "E: I do not know how to translate $REMOTE into a gitweb URL." - return 1 - ;; -esac - -HASH=$(git rev-parse HEAD) -echo $GITWEB_BASE/$part/commitdiff/$HASH