summaryrefslogtreecommitdiffstats
path: root/post-update.sh
blob: a566bd54f610674c7d39cfc4a6a6a9452e92d89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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