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

output additional information
authormartin f. krafft <madduck@madduck.net>
Fri, 30 Jul 2010 20:23:37 +0000 (22:23 +0200)
committermartin f. krafft <madduck@madduck.net>
Fri, 30 Jul 2010 20:23:37 +0000 (22:23 +0200)
.zsh/func/giturl

index f001308b123f1a99551b0eabcfe63143839caa06..e4dfa5fb1b8552ddf16c4ff359b9df510f8f0711 100755 (executable)
@@ -28,5 +28,12 @@ case "$REMOTE" in
     ;;
 esac
 
+echo $GITWEB_BASE/$part
 HASH=$(git rev-parse HEAD)
 echo $GITWEB_BASE/$part/commitdiff/$HASH
+
+echo $GITWEB_BASE/$part/tree/HEAD
+for i in $@; do
+  [ -f "$i" ] && echo "$GITWEB_BASE/$part/blob/HEAD:/$i"
+  [ -d "$i" ] && echo "$GITWEB_BASE/$part/tree/HEAD:/$i"
+done