]> git.madduck.net Git - etc/zsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

add giturl function
authormartin f. krafft <madduck@madduck.net>
Tue, 15 Jun 2010 10:30:16 +0000 (12:30 +0200)
committermartin f. krafft <madduck@madduck.net>
Tue, 15 Jun 2010 10:30:16 +0000 (12:30 +0200)
.zsh/func/giturl [new file with mode: 0755]

diff --git a/.zsh/func/giturl b/.zsh/func/giturl
new file mode 100755 (executable)
index 0000000..26587e2
--- /dev/null
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# func/giturl
+#
+# a convenient way to display the gitweb URL of a commit-ish
+#
+# Copyright © 2010 martin f. krafft <madduck@madduck.net>
+# 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/}";;
+  *)
+    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