https://github.com/git/git
Raw File
Tip revision: d516b2db0af2221bd6b13e7347abdcb5830b2829 authored by Junio C Hamano on 13 April 2022, 22:21:34 UTC
Git 2.35.3
Tip revision: d516b2d
generate-hooklist.sh
#!/bin/sh
#
# Usage: ./generate-hooklist.sh >hook-list.h

cat <<EOF
/* Automatically generated by generate-hooklist.sh */

static const char *hook_name_list[] = {
EOF

sed -n \
	-e '/^~~~~*$/ {x; s/^.*$/	"&",/; p;}' \
	-e 'x' \
	<Documentation/githooks.txt |
	LC_ALL=C sort

cat <<EOF
	NULL,
};
EOF
back to top