Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: b3d7a52fac39193503a0b6728771d1bf6a161464 authored by Junio C Hamano on 01 June 2020, 06:03:57 UTC
Git 2.27
Tip revision: b3d7a52
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