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;
32 if (!use_key_regexp && strcmp(key_, key))
34 if (use_key_regexp && regexec(key_regexp, key_, 0, NULL, 0))
38 regexec(regexp, (value_?value_:""), 0, NULL, 0)))
46 sprintf(value, "%d", git_config_int(key_, value_?value_:""));
47 else if (type == T_BOOL)
48 vptr = git_config_bool(key_, value_) ? "true" : "false";
50 vptr = value_?value_:"";
53 error("More than one value for the key %s: %s",
62 static int get_value(const char* key_, const char* regex_)
66 char *global = NULL, *repo_config = NULL;
69 local = getenv("GIT_CONFIG");
71 const char *home = getenv("HOME");
72 local = getenv("GIT_CONFIG_LOCAL");
74 local = repo_config = strdup(git_path("config"));
76 global = strdup(mkpath("%s/.gitconfig", home));
80 for (tl=key+strlen(key)-1; tl >= key && *tl != '.'; --tl)
82 for (tl=key; *tl && *tl != '.'; ++tl)
86 key_regexp = (regex_t*)malloc(sizeof(regex_t));
87 if (regcomp(key_regexp, key, REG_EXTENDED)) {
88 fprintf(stderr, "Invalid key pattern: %s\n", key_);
94 if (regex_[0] == '!') {
99 regexp = (regex_t*)malloc(sizeof(regex_t));
100 if (regcomp(regexp, regex_, REG_EXTENDED)) {
101 fprintf(stderr, "Invalid pattern: %s\n", regex_);
106 if (do_all && global)
107 git_config_from_file(show_config, global);
108 git_config_from_file(show_config, local);
109 if (!do_all && !seen && global)
110 git_config_from_file(show_config, global);
121 ret = (seen == 1) ? 0 : 1;
131 int main(int argc, const char **argv)
134 setup_git_directory_gently(&nongit);
137 if (!strcmp(argv[1], "--int"))
139 else if (!strcmp(argv[1], "--bool"))
141 else if (!strcmp(argv[1], "--list") || !strcmp(argv[1], "-l"))
142 return git_config(show_all_config);
151 return get_value(argv[1], NULL);
153 if (!strcmp(argv[1], "--unset"))
154 return git_config_set(argv[2], NULL);
155 else if (!strcmp(argv[1], "--unset-all"))
156 return git_config_set_multivar(argv[2], NULL, NULL, 1);
157 else if (!strcmp(argv[1], "--get"))
158 return get_value(argv[2], NULL);
159 else if (!strcmp(argv[1], "--get-all")) {
161 return get_value(argv[2], NULL);
162 } else if (!strcmp(argv[1], "--get-regexp")) {
166 return get_value(argv[2], NULL);
169 return git_config_set(argv[1], argv[2]);
171 if (!strcmp(argv[1], "--unset"))
172 return git_config_set_multivar(argv[2], NULL, argv[3], 0);
173 else if (!strcmp(argv[1], "--unset-all"))
174 return git_config_set_multivar(argv[2], NULL, argv[3], 1);
175 else if (!strcmp(argv[1], "--get"))
176 return get_value(argv[2], argv[3]);
177 else if (!strcmp(argv[1], "--get-all")) {
179 return get_value(argv[2], argv[3]);
180 } else if (!strcmp(argv[1], "--get-regexp")) {
184 return get_value(argv[2], argv[3]);
185 } else if (!strcmp(argv[1], "--replace-all"))
187 return git_config_set_multivar(argv[2], argv[3], NULL, 1);
190 return git_config_set_multivar(argv[1], argv[2], argv[3], 0);
192 if (!strcmp(argv[1], "--replace-all"))
193 return git_config_set_multivar(argv[2], argv[3], argv[4], 1);
196 usage(git_config_set_usage);