File: git-private-update-hook

package info (click to toggle)
libreswan 5.2-2.3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 81,644 kB
  • sloc: ansic: 129,988; sh: 32,018; xml: 20,646; python: 10,303; makefile: 3,022; javascript: 1,506; sed: 574; yacc: 511; perl: 264; awk: 52
file content (32 lines) | stat: -rwxr-xr-x 690 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
#
# An example hook script to mail out commit update information.
# Called by git-receive-pack with arguments: refname sha1-old sha1-new
#
# To enable this hook:
# (1) change the recipient e-mail address
# (2) make this file executable by "chmod +x update".
#

exec 1>&2

recipient="commits@lists.libreswan.org"

if expr "$2" : '0*$' >/dev/null
then
	echo "Created a new ref, with the following commits:"
	git-rev-list --pretty "$3"
else
	base=$(git-merge-base "$2" "$3")
	case "$base" in
	"$2")
		echo "New commits:"
		;;
	*)
		echo "Rebased ref, commits from common ancestor:"
		;;
	esac
fi

git-rev-list --pretty "$3" "^$base" | mail -s "Changes to ref $1" "$recipient"
exit 0