https://github.com/git/git
Raw File
Tip revision: 88b7be68a4bf9f39b84ed438d8d776c0d752b316 authored by Johannes Schindelin on 27 May 2022, 21:38:36 UTC
Git 2.30.5
Tip revision: 88b7be6
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