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-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