]> 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:

comment update
authormartin f. krafft <madduck@madduck.net>
Fri, 30 Jul 2010 20:26:08 +0000 (22:26 +0200)
committermartin f. krafft <madduck@madduck.net>
Fri, 30 Jul 2010 20:26:08 +0000 (22:26 +0200)
.zsh/func/giturl

index e4dfa5fb1b8552ddf16c4ff359b9df510f8f0711..c4dd9de735d6830cf77a3d454cde3c74db615187 100755 (executable)
@@ -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 <madduck@madduck.net>
 # 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"
     ;;
   *)