]>
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:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
95596bd )
# Source repository: git://git.madduck.net/etc/zsh.git
#
# 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 REMOTE
-REMOTE=$(git config --get remote.origin.url)
-
-local part
-case "$REMOTE" in
- madduck:pub/*) part="${REMOTE#madduck:pub/}";;
+local part gitweb_base oldstyle
+oldstyle=0
+case "$remote" in
+ madduck:pub/*)
+ gitweb_base=http://git.madduck.net/v
+ part="${remote#madduck:pub/}"
+ ;;
+ debian:*|*://git.debian.org/git/*|*@git.debian.org/git/*)
+ gitweb_base=http://git.debian.org
+ part="${remote#debian:}"
+ part="${part#*://git.debian.org/git/}"
+ part="${part#*@git.debian.org/git/}"
+ oldstyle=1
+ ;;
*)
echo >&2 "E: I do not know how to translate $REMOTE into a gitweb URL."
return 1
;;
esac
*)
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
+local hash
+hash=$(git rev-parse HEAD)
+
+case "$oldstyle" in
+ 0) echo "$gitweb_base/$part/commitdiff/$hash";;
+ *) echo "$gitweb_base/?p=$part;a=commitdiff;h=$hash";;
+esac