Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hooks--update « templates - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 540ade0d52c84d59bbdd863f60a0e90203643ff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
#
# An example hook script to mail out commit update information.
#
# To enable this hook:
# (1) change the recipient e-mail address
# (2) make this file executable by "chmod +x update".
#

recipient="commit-list@mydomain.xz"

if expr "$2" : '0*$' >/dev/null
then
	echo "Created a new ref, with the following commits:"
	git-rev-list --pretty "$2"
else
	echo "New commits:"
	git-rev-list --pretty "$3" "^$2"
fi |
mail -s "Changes to ref $1" "$recipient"
exit 0