4 static const char git_config_set_usage[] =
5 "git-repo-config [ --bool | --int ] [--get | --get-all | --get-regexp | --replace-all | --unset | --unset-all] name [value [value_regex]] | --list";
7 static char* key = NULL;
8 static regex_t* key_regexp = NULL;
9 static regex_t* regexp = NULL;
10 static int show_keys = 0;
11 static int use_key_regexp = 0;
12 static int do_all = 0;
13 static int do_not_match = 0;
15 static enum { T_RAW, T_INT, T_BOOL } type = T_RAW;
17 static int show_all_config(const char *key_, const char *value_)
20 printf("%s=%s\n", key_, value_);
26 static int show_config(const char* key_, const char* value_)
29 const char *vptr = value;
35 if (!use_key_regexp && strcmp(key_, key))
37 if (use_key_regexp && regexec(key_regexp, key_, 0, NULL, 0))
41 regexec(regexp, value_, 0, NULL, 0)))
49 sprintf(value, "%d", git_config_int(key_, value_));
50 else if (type == T_BOOL)
51 vptr = git_config_bool(key_, value_) ? "true" : "false";
56 error("More than one value for the key %s: %s",
65 static int get_value(const char* key_, const char* regex_)
70 for (tl=key+strlen(key)-1; tl >= key && *tl != '.'; --tl)
72 for (tl=key; *tl && *tl != '.'; ++tl)
76 key_regexp = (regex_t*)malloc(sizeof(regex_t));
77 if (regcomp(key_regexp, key, REG_EXTENDED)) {
78 fprintf(stderr, "Invalid key pattern: %s\n", key_);
84 if (regex_[0] == '!') {
89 regexp = (regex_t*)malloc(sizeof(regex_t));
90 if (regcomp(regexp, regex_, REG_EXTENDED)) {
91 fprintf(stderr, "Invalid pattern: %s\n", regex_);
96 git_config(show_config);
106 return (seen == 1) ? 0 : 1;
109 int main(int argc, const char **argv)
111 setup_git_directory();
114 if (!strcmp(argv[1], "--int"))
116 else if (!strcmp(argv[1], "--bool"))
118 else if (!strcmp(argv[1], "--list") || !strcmp(argv[1], "-l"))
119 return git_config(show_all_config);
128 return get_value(argv[1], NULL);
130 if (!strcmp(argv[1], "--unset"))
131 return git_config_set(argv[2], NULL);
132 else if (!strcmp(argv[1], "--unset-all"))
133 return git_config_set_multivar(argv[2], NULL, NULL, 1);
134 else if (!strcmp(argv[1], "--get"))
135 return get_value(argv[2], NULL);
136 else if (!strcmp(argv[1], "--get-all")) {
138 return get_value(argv[2], NULL);
139 } else if (!strcmp(argv[1], "--get-regexp")) {
143 return get_value(argv[2], NULL);
146 return git_config_set(argv[1], argv[2]);
148 if (!strcmp(argv[1], "--unset"))
149 return git_config_set_multivar(argv[2], NULL, argv[3], 0);
150 else if (!strcmp(argv[1], "--unset-all"))
151 return git_config_set_multivar(argv[2], NULL, argv[3], 1);
152 else if (!strcmp(argv[1], "--get"))
153 return get_value(argv[2], argv[3]);
154 else if (!strcmp(argv[1], "--get-all")) {
156 return get_value(argv[2], argv[3]);
157 } else if (!strcmp(argv[1], "--get-regexp")) {
161 return get_value(argv[2], argv[3]);
162 } else if (!strcmp(argv[1], "--replace-all"))
164 return git_config_set_multivar(argv[2], argv[3], NULL, 1);
167 return git_config_set_multivar(argv[1], argv[2], argv[3], 0);
169 if (!strcmp(argv[1], "--replace-all"))
170 return git_config_set_multivar(argv[2], argv[3], argv[4], 1);
173 usage(git_config_set_usage);