https://github.com/git/git
Raw File
Tip revision: eb88fe1ff5ceb34845f0919b8bdc60d8a1703cf6 authored by Johannes Schindelin on 06 February 2023, 08:38:32 UTC
Git 2.37.6
Tip revision: eb88fe1
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