Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: cd3e606211bb1cf8bc57f7d76bab98cc17a150bc authored by Junio C Hamano on 15 November 2021, 06:50:52 UTC
Git 2.34
Tip revision: cd3e606
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