5 static const char git_config_set_usage[] =
6 "git-repo-config [ --bool | --int ] [--get | --get-all | --get-regexp | --replace-all | --unset | --unset-all] name [value [value_regex]] | --list";
9 static regex_t *key_regexp;
10 static regex_t *regexp;
12 static int use_key_regexp;
14 static int do_not_match;
16 static enum { T_RAW, T_INT, T_BOOL } type = T_RAW;
18 static int show_all_config(const char *key_, const char *value_)
21 printf("%s=%s\n", key_, value_);
27 static int show_config(const char* key_, const char* value_)
30 const char *vptr = value;
33 if (!use_key_regexp && strcmp(key_, key))
35 if (use_key_regexp && regexec(key_regexp, key_, 0, NULL, 0))
39 regexec(regexp, (value_?value_:""), 0, NULL, 0)))
47 sprintf(value, "%d", git_config_int(key_, value_?value_:""));
48 else if (type == T_BOOL)
49 vptr = git_config_bool(key_, value_) ? "true" : "false";
51 vptr = value_?value_:"";
54 error("More than one value for the key %s: %s",
63 static int get_value(const char* key_, const char* regex_)
67 char *global = NULL, *repo_config = NULL;
70 local = getenv("GIT_CONFIG");
72 const char *home = getenv("HOME");
73 local = getenv("GIT_CONFIG_LOCAL");
75 local = repo_config = xstrdup(git_path("config"));
77 global = xstrdup(mkpath("%s/.gitconfig", home));
81 for (tl=key+strlen(key)-1; tl >= key && *tl != '.'; --tl)
83 for (tl=key; *tl && *tl != '.'; ++tl)
87 key_regexp = (regex_t*)xmalloc(sizeof(regex_t));
88 if (regcomp(key_regexp, key, REG_EXTENDED)) {
89 fprintf(stderr, "Invalid key pattern: %s\n", key_);
95 if (regex_[0] == '!') {
100 regexp = (regex_t*)xmalloc(sizeof(regex_t));
101 if (regcomp(regexp, regex_, REG_EXTENDED)) {
102 fprintf(stderr, "Invalid pattern: %s\n", regex_);
107 if (do_all && global)
108 git_config_from_file(show_config, global);
109 git_config_from_file(show_config, local);
110 if (!do_all && !seen && global)
111 git_config_from_file(show_config, global);
122 ret = (seen == 1) ? 0 : seen > 1 ? 2 : 1;
130 int cmd_repo_config(int argc, const char **argv, const char *prefix)
133 setup_git_directory_gently(&nongit);
136 if (!strcmp(argv[1], "--int"))
138 else if (!strcmp(argv[1], "--bool"))
140 else if (!strcmp(argv[1], "--list") || !strcmp(argv[1], "-l"))
141 return git_config(show_all_config);
150 return get_value(argv[1], NULL);
152 if (!strcmp(argv[1], "--unset"))
153 return git_config_set(argv[2], NULL);
154 else if (!strcmp(argv[1], "--unset-all"))
155 return git_config_set_multivar(argv[2], NULL, NULL, 1);
156 else if (!strcmp(argv[1], "--get"))
157 return get_value(argv[2], NULL);
158 else if (!strcmp(argv[1], "--get-all")) {
160 return get_value(argv[2], NULL);
161 } else if (!strcmp(argv[1], "--get-regexp")) {
165 return get_value(argv[2], NULL);
168 return git_config_set(argv[1], argv[2]);
170 if (!strcmp(argv[1], "--unset"))
171 return git_config_set_multivar(argv[2], NULL, argv[3], 0);
172 else if (!strcmp(argv[1], "--unset-all"))
173 return git_config_set_multivar(argv[2], NULL, argv[3], 1);
174 else if (!strcmp(argv[1], "--get"))
175 return get_value(argv[2], argv[3]);
176 else if (!strcmp(argv[1], "--get-all")) {
178 return get_value(argv[2], argv[3]);
179 } else if (!strcmp(argv[1], "--get-regexp")) {
183 return get_value(argv[2], argv[3]);
184 } else if (!strcmp(argv[1], "--replace-all"))
186 return git_config_set_multivar(argv[2], argv[3], NULL, 1);
189 return git_config_set_multivar(argv[1], argv[2], argv[3], 0);
191 if (!strcmp(argv[1], "--replace-all"))
192 return git_config_set_multivar(argv[2], argv[3], argv[4], 1);
195 usage(git_config_set_usage);