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_)
69 char *global = NULL, *repo_config = NULL;
72 local = getenv("GIT_CONFIG");
74 const char *home = getenv("HOME");
75 local = getenv("GIT_CONFIG_LOCAL");
77 local = repo_config = strdup(git_path("config"));
79 global = strdup(mkpath("%s/.gitconfig", home));
83 for (tl=key+strlen(key)-1; tl >= key && *tl != '.'; --tl)
85 for (tl=key; *tl && *tl != '.'; ++tl)
89 key_regexp = (regex_t*)malloc(sizeof(regex_t));
90 if (regcomp(key_regexp, key, REG_EXTENDED)) {
91 fprintf(stderr, "Invalid key pattern: %s\n", key_);
97 if (regex_[0] == '!') {
102 regexp = (regex_t*)malloc(sizeof(regex_t));
103 if (regcomp(regexp, regex_, REG_EXTENDED)) {
104 fprintf(stderr, "Invalid pattern: %s\n", regex_);
109 if (do_all && global)
110 git_config_from_file(show_config, global);
111 git_config_from_file(show_config, local);
112 if (!do_all && !seen && global)
113 git_config_from_file(show_config, global);
124 ret = (seen == 1) ? 0 : 1;
134 int main(int argc, const char **argv)
137 setup_git_directory_gently(&nongit);
140 if (!strcmp(argv[1], "--int"))
142 else if (!strcmp(argv[1], "--bool"))
144 else if (!strcmp(argv[1], "--list") || !strcmp(argv[1], "-l"))
145 return git_config(show_all_config);
154 return get_value(argv[1], NULL);
156 if (!strcmp(argv[1], "--unset"))
157 return git_config_set(argv[2], NULL);
158 else if (!strcmp(argv[1], "--unset-all"))
159 return git_config_set_multivar(argv[2], NULL, NULL, 1);
160 else if (!strcmp(argv[1], "--get"))
161 return get_value(argv[2], NULL);
162 else if (!strcmp(argv[1], "--get-all")) {
164 return get_value(argv[2], NULL);
165 } else if (!strcmp(argv[1], "--get-regexp")) {
169 return get_value(argv[2], NULL);
172 return git_config_set(argv[1], argv[2]);
174 if (!strcmp(argv[1], "--unset"))
175 return git_config_set_multivar(argv[2], NULL, argv[3], 0);
176 else if (!strcmp(argv[1], "--unset-all"))
177 return git_config_set_multivar(argv[2], NULL, argv[3], 1);
178 else if (!strcmp(argv[1], "--get"))
179 return get_value(argv[2], argv[3]);
180 else if (!strcmp(argv[1], "--get-all")) {
182 return get_value(argv[2], argv[3]);
183 } else if (!strcmp(argv[1], "--get-regexp")) {
187 return get_value(argv[2], argv[3]);
188 } else if (!strcmp(argv[1], "--replace-all"))
190 return git_config_set_multivar(argv[2], argv[3], NULL, 1);
193 return git_config_set_multivar(argv[1], argv[2], argv[3], 0);
195 if (!strcmp(argv[1], "--replace-all"))
196 return git_config_set_multivar(argv[2], argv[3], argv[4], 1);
199 usage(git_config_set_usage);