]> git.madduck.net Git - etc/zsh.git/blob - .zsh/func/giturl

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:

26587e2087ad179b3862323afbc6d2c86b06924f
[etc/zsh.git] / .zsh / func / giturl
1 #!/bin/sh
2 #
3 # func/giturl
4 #
5 # a convenient way to display the gitweb URL of a commit-ish
6 #
7 # Copyright © 2010 martin f. krafft <madduck@madduck.net>
8 # Released under the terms of the Artistic Licence 2.0
9 #
10 # Source repository: git://git.madduck.net/etc/zsh.git
11 #
12
13 local GITWEB_BASE
14 GITWEB_BASE=http://git.madduck.net/v
15
16 local REMOTE
17 REMOTE=$(git config --get remote.origin.url)
18
19 local part
20 case "$REMOTE" in
21   madduck:pub/*) part="${REMOTE#madduck:pub/}";;
22   *)
23     echo >&2 "E: I do not know how to translate $REMOTE into a gitweb URL."
24     return 1
25     ;;
26 esac
27
28 HASH=$(git rev-parse HEAD)
29 echo $GITWEB_BASE/$part/commitdiff/$HASH