4 static const char git_config_set_usage[] =
5 "git-config [ --global | --system | [ -f | --file ] config-file ] [ --bool | --int ] [ -z | --null ] [--get | --get-all | --get-regexp | --replace-all | --add | --unset | --unset-all] name [value [value_regex]] | --rename-section old_name new_name | --remove-section name | --list";
8 static regex_t *key_regexp;
9 static regex_t *regexp;
11 static int use_key_regexp;
13 static int do_not_match;
15 static char delim = '=';
16 static char key_delim = ' ';
17 static char term = '\n';
18 static enum { T_RAW, T_INT, T_BOOL } type = T_RAW;
20 static int show_all_config(const char *key_, const char *value_)
23 printf("%s%c%s%c", key_, delim, value_, term);
25 printf("%s%c", key_, term);
29 static int show_config(const char* key_, const char* value_)
32 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_?value_:""), 0, NULL, 0)))
46 printf("%s%c", key_, key_delim);
53 sprintf(value, "%d", git_config_int(key_, value_?value_:""));
54 else if (type == T_BOOL)
55 vptr = git_config_bool(key_, value_) ? "true" : "false";
57 vptr = value_?value_:"";
60 error("More than one value for the key %s: %s",
64 printf("%s%c", vptr, term);
69 static int get_value(const char* key_, const char* regex_)
73 char *global = NULL, *repo_config = NULL;
74 const char *system_wide = NULL, *local;
76 local = getenv(CONFIG_ENVIRONMENT);
78 const char *home = getenv("HOME");
79 local = getenv(CONFIG_LOCAL_ENVIRONMENT);
81 local = repo_config = xstrdup(git_path("config"));
83 global = xstrdup(mkpath("%s/.gitconfig", home));
84 system_wide = ETC_GITCONFIG;
88 for (tl=key+strlen(key)-1; tl >= key && *tl != '.'; --tl)
90 for (tl=key; *tl && *tl != '.'; ++tl)
94 key_regexp = (regex_t*)xmalloc(sizeof(regex_t));
95 if (regcomp(key_regexp, key, REG_EXTENDED)) {
96 fprintf(stderr, "Invalid key pattern: %s\n", key_);
102 if (regex_[0] == '!') {
107 regexp = (regex_t*)xmalloc(sizeof(regex_t));
108 if (regcomp(regexp, regex_, REG_EXTENDED)) {
109 fprintf(stderr, "Invalid pattern: %s\n", regex_);
114 if (do_all && system_wide)
115 git_config_from_file(show_config, system_wide);
116 if (do_all && global)
117 git_config_from_file(show_config, global);
118 git_config_from_file(show_config, local);
119 if (!do_all && !seen && global)
120 git_config_from_file(show_config, global);
121 if (!do_all && !seen && system_wide)
122 git_config_from_file(show_config, system_wide);
133 ret = (seen == 1) ? 0 : seen > 1 ? 2 : 1;
141 char *normalize_value(const char *key, const char *value)
149 normalized = xstrdup(value);
151 normalized = xmalloc(64);
153 int v = git_config_int(key, value);
154 sprintf(normalized, "%d", v);
156 else if (type == T_BOOL)
157 sprintf(normalized, "%s",
158 git_config_bool(key, value) ? "true" : "false");
164 int cmd_config(int argc, const char **argv, const char *prefix)
168 const char *file = setup_git_directory_gently(&nongit);
171 if (!strcmp(argv[1], "--int"))
173 else if (!strcmp(argv[1], "--bool"))
175 else if (!strcmp(argv[1], "--list") || !strcmp(argv[1], "-l")) {
177 usage(git_config_set_usage);
178 if (git_config(show_all_config) < 0 && file && errno)
179 die("unable to read config file %s: %s", file,
183 else if (!strcmp(argv[1], "--global")) {
184 char *home = getenv("HOME");
186 char *user_config = xstrdup(mkpath("%s/.gitconfig", home));
187 setenv(CONFIG_ENVIRONMENT, user_config, 1);
190 die("$HOME not set");
193 else if (!strcmp(argv[1], "--system"))
194 setenv(CONFIG_ENVIRONMENT, ETC_GITCONFIG, 1);
195 else if (!strcmp(argv[1], "--file") || !strcmp(argv[1], "-f")) {
197 usage(git_config_set_usage);
198 if (!is_absolute_path(argv[2]) && file)
199 file = prefix_filename(file, strlen(file),
203 setenv(CONFIG_ENVIRONMENT, file, 1);
207 else if (!strcmp(argv[1], "--null") || !strcmp(argv[1], "-z")) {
212 else if (!strcmp(argv[1], "--rename-section")) {
215 usage(git_config_set_usage);
216 ret = git_config_rename_section(argv[2], argv[3]);
220 fprintf(stderr, "No such section!\n");
225 else if (!strcmp(argv[1], "--remove-section")) {
228 usage(git_config_set_usage);
229 ret = git_config_rename_section(argv[2], NULL);
233 fprintf(stderr, "No such section!\n");
246 return get_value(argv[1], NULL);
248 if (!strcmp(argv[1], "--unset"))
249 return git_config_set(argv[2], NULL);
250 else if (!strcmp(argv[1], "--unset-all"))
251 return git_config_set_multivar(argv[2], NULL, NULL, 1);
252 else if (!strcmp(argv[1], "--get"))
253 return get_value(argv[2], NULL);
254 else if (!strcmp(argv[1], "--get-all")) {
256 return get_value(argv[2], NULL);
257 } else if (!strcmp(argv[1], "--get-regexp")) {
261 return get_value(argv[2], NULL);
263 value = normalize_value(argv[1], argv[2]);
264 return git_config_set(argv[1], value);
267 if (!strcmp(argv[1], "--unset"))
268 return git_config_set_multivar(argv[2], NULL, argv[3], 0);
269 else if (!strcmp(argv[1], "--unset-all"))
270 return git_config_set_multivar(argv[2], NULL, argv[3], 1);
271 else if (!strcmp(argv[1], "--get"))
272 return get_value(argv[2], argv[3]);
273 else if (!strcmp(argv[1], "--get-all")) {
275 return get_value(argv[2], argv[3]);
276 } else if (!strcmp(argv[1], "--get-regexp")) {
280 return get_value(argv[2], argv[3]);
281 } else if (!strcmp(argv[1], "--add")) {
282 value = normalize_value(argv[2], argv[3]);
283 return git_config_set_multivar(argv[2], value, "^$", 0);
284 } else if (!strcmp(argv[1], "--replace-all")) {
285 value = normalize_value(argv[2], argv[3]);
286 return git_config_set_multivar(argv[2], value, NULL, 1);
288 value = normalize_value(argv[1], argv[2]);
289 return git_config_set_multivar(argv[1], value, argv[3], 0);
292 if (!strcmp(argv[1], "--replace-all")) {
293 value = normalize_value(argv[2], argv[3]);
294 return git_config_set_multivar(argv[2], value, argv[4], 1);
298 usage(git_config_set_usage);