3 # This script is run after receive-pack has accepted a pack and the
4 # repository has been updated. It is passed arguments in through stdin
6 # <oldrev> <newrev> <refname>
8 # aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master
10 class=`git config zephyr.class`
11 instance=`git config zephyr.instance`
12 zsig=`git config zephyr.zsig`
13 color=`git config --bool zephyr.color`
15 if [ "${color:-true}" = "true" ]; then
21 if [ -z "$class" ]; then
22 echo "I don't know where to send a commit zephyr!" >&2
23 echo "Please set the zephyr.class config variable in" >&2
24 echo "$PWD/config." >&2
27 while read oldrev newrev refname; do
28 git-rev-list --reverse "$oldrev..$newrev" | while read rev; do
29 shortrev=`git log -1 --pretty=format:%h "$rev"`
30 (git show --stat $usecolor "$rev" |
34 -e 's/
\e\[33m/@color(yellow)/g' \
35 -e 's/
\e\[31m/@color(red)/g' \
36 -e 's/
\e\[32m/@color(green)/g' \
39 zwrite -c "$class" -i "${instance:-$shortrev}" -s "${zsig:-Git}: $refname" -d