https://github.com/git/git
Raw File
Tip revision: 1b3d6e17fe83eb6f79ffbac2f2c61bbf1eaef5f8 authored by Junio C Hamano on 21 September 2022, 22:26:39 UTC
Git 2.38-rc1
Tip revision: 1b3d6e1
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