https://github.com/git/git
Raw File
Tip revision: d96ea538e8dd0fcf381089a3b09c0a9af3617351 authored by Junio C Hamano on 13 December 2022, 12:10:27 UTC
Git 2.32.5
Tip revision: d96ea53
generate-configlist.sh
#!/bin/sh

echo "/* Automatically generated by generate-configlist.sh */"
echo

print_config_list () {
	cat <<EOF
static const char *config_name_list[] = {
EOF
	grep -h '^[a-zA-Z].*\..*::$' Documentation/*config.txt Documentation/config/*.txt |
	sed '/deprecated/d; s/::$//; s/,  */\n/g' |
	sort |
	sed 's/^.*$/	"&",/'
	cat <<EOF
	NULL,
};
EOF
}

echo
print_config_list
back to top