https://github.com/git/git
Raw File
Tip revision: 0d464a4e6a5a19bd8fbea1deae22d48d14dccb01 authored by Junio C Hamano on 23 February 2024, 00:13:38 UTC
Git 2.43.3
Tip revision: 0d464a4
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