summaryrefslogtreecommitdiffstats
path: root/post-update.sh
blob: 443cd9e248ab9585013b2a7594bb052f3fea16d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, rename this file to "post-update".

echo "ARGS=" $*
while read IN; do
	echo "IN=$IN"
done

git update-server-info