4 static const char git_config_set_usage[] =
5 "git-repo-config [ --bool | --int ] [--get | --get-all | --replace-all | --unset | --unset-all] name [value [value_regex]] | --list";
7 static char* key = NULL;
8 static char* value = NULL;
9 static regex_t* regexp = NULL;
10 static int do_all = 0;
11 static int do_not_match = 0;
13 static enum { T_RAW, T_INT, T_BOOL } type = T_RAW;
15 static int show_all_config(const char *key_, const char *value_)
18 printf("%s=%s\n", key_, value_);
24 static int show_config(const char* key_, const char* value_)
29 if (!strcmp(key_, key) &&
32 !regexec(regexp, value_, 0, NULL, 0)))) {
34 printf("%s\n", value_);
38 fprintf(stderr, "More than one value: %s\n", value);
44 sprintf(value, "%d", git_config_int(key_, value_));
45 } else if (type == T_BOOL) {
47 sprintf(value, "%s", git_config_bool(key_, value_)
50 value = strdup(value_);
57 static int get_value(const char* key_, const char* regex_)
61 key = malloc(strlen(key_)+1);
62 for (i = 0; key_[i]; i++)
63 key[i] = tolower(key_[i]);
67 if (regex_[0] == '!') {
72 regexp = (regex_t*)malloc(sizeof(regex_t));
73 if (regcomp(regexp, regex_, REG_EXTENDED)) {
74 fprintf(stderr, "Invalid pattern: %s\n", regex_);
79 git_config(show_config);
81 printf("%s\n", value);
93 return seen == 1 ? 0 : 1;
96 int main(int argc, const char **argv)
98 setup_git_directory();
101 if (!strcmp(argv[1], "--int"))
103 else if (!strcmp(argv[1], "--bool"))
111 if (!strcmp(argv[1], "--list") || !strcmp(argv[1], "-l"))
112 return git_config(show_all_config);
116 return get_value(argv[1], NULL);
118 if (!strcmp(argv[1], "--unset"))
119 return git_config_set(argv[2], NULL);
120 else if (!strcmp(argv[1], "--unset-all"))
121 return git_config_set_multivar(argv[2], NULL, NULL, 1);
122 else if (!strcmp(argv[1], "--get"))
123 return get_value(argv[2], NULL);
124 else if (!strcmp(argv[1], "--get-all")) {
126 return get_value(argv[2], NULL);
129 return git_config_set(argv[1], argv[2]);
131 if (!strcmp(argv[1], "--unset"))
132 return git_config_set_multivar(argv[2], NULL, argv[3], 0);
133 else if (!strcmp(argv[1], "--unset-all"))
134 return git_config_set_multivar(argv[2], NULL, argv[3], 1);
135 else if (!strcmp(argv[1], "--get"))
136 return get_value(argv[2], argv[3]);
137 else if (!strcmp(argv[1], "--get-all")) {
139 return get_value(argv[2], argv[3]);
140 } else if (!strcmp(argv[1], "--replace-all"))
142 return git_config_set_multivar(argv[2], argv[3], NULL, 1);
145 return git_config_set_multivar(argv[1], argv[2], argv[3], 0);
147 if (!strcmp(argv[1], "--replace-all"))
148 return git_config_set_multivar(argv[2], argv[3], argv[4], 1);
151 usage(git_config_set_usage);