2006-08-02 23:51:59 +02:00
|
|
|
#include "builtin.h"
|
2005-11-17 22:44:55 +01:00
|
|
|
#include "cache.h"
|
2005-11-20 06:52:22 +01:00
|
|
|
#include <regex.h>
|
2005-11-17 22:44:55 +01:00
|
|
|
|
|
|
|
static const char git_config_set_usage[] =
|
2006-05-03 06:06:56 +02:00
|
|
|
"git-repo-config [ --bool | --int ] [--get | --get-all | --get-regexp | --replace-all | --unset | --unset-all] name [value [value_regex]] | --list";
|
2005-11-20 06:52:22 +01:00
|
|
|
|
|
|
|
static char* key = NULL;
|
2006-05-02 14:22:48 +02:00
|
|
|
static regex_t* key_regexp = NULL;
|
2006-01-05 01:31:02 +01:00
|
|
|
static regex_t* regexp = NULL;
|
2006-05-02 14:22:48 +02:00
|
|
|
static int show_keys = 0;
|
|
|
|
static int use_key_regexp = 0;
|
2005-11-20 06:52:22 +01:00
|
|
|
static int do_all = 0;
|
2005-11-20 13:24:18 +01:00
|
|
|
static int do_not_match = 0;
|
2005-11-20 06:52:22 +01:00
|
|
|
static int seen = 0;
|
2006-02-12 04:14:48 +01:00
|
|
|
static enum { T_RAW, T_INT, T_BOOL } type = T_RAW;
|
2005-11-20 06:52:22 +01:00
|
|
|
|
2006-04-25 00:59:25 +02:00
|
|
|
static int show_all_config(const char *key_, const char *value_)
|
|
|
|
{
|
|
|
|
if (value_)
|
|
|
|
printf("%s=%s\n", key_, value_);
|
|
|
|
else
|
|
|
|
printf("%s\n", key_);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-11-20 06:52:22 +01:00
|
|
|
static int show_config(const char* key_, const char* value_)
|
|
|
|
{
|
2006-05-03 06:06:56 +02:00
|
|
|
char value[256];
|
|
|
|
const char *vptr = value;
|
2006-05-03 14:41:03 +02:00
|
|
|
int dup_error = 0;
|
2006-05-03 06:06:56 +02:00
|
|
|
|
2006-05-03 14:41:03 +02:00
|
|
|
if (!use_key_regexp && strcmp(key_, key))
|
|
|
|
return 0;
|
|
|
|
if (use_key_regexp && regexec(key_regexp, key_, 0, NULL, 0))
|
|
|
|
return 0;
|
|
|
|
if (regexp != NULL &&
|
2005-11-20 13:24:18 +01:00
|
|
|
(do_not_match ^
|
2006-06-24 14:19:30 +02:00
|
|
|
regexec(regexp, (value_?value_:""), 0, NULL, 0)))
|
2006-05-03 14:41:03 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (show_keys)
|
|
|
|
printf("%s ", key_);
|
|
|
|
if (seen && !do_all)
|
|
|
|
dup_error = 1;
|
|
|
|
if (type == T_INT)
|
2006-06-24 14:19:30 +02:00
|
|
|
sprintf(value, "%d", git_config_int(key_, value_?value_:""));
|
2006-05-03 14:41:03 +02:00
|
|
|
else if (type == T_BOOL)
|
|
|
|
vptr = git_config_bool(key_, value_) ? "true" : "false";
|
|
|
|
else
|
2006-06-24 14:19:30 +02:00
|
|
|
vptr = value_?value_:"";
|
2006-05-03 14:41:03 +02:00
|
|
|
seen++;
|
|
|
|
if (dup_error) {
|
|
|
|
error("More than one value for the key %s: %s",
|
|
|
|
key_, vptr);
|
2005-11-20 06:52:22 +01:00
|
|
|
}
|
2006-05-03 14:41:03 +02:00
|
|
|
else
|
|
|
|
printf("%s\n", vptr);
|
|
|
|
|
2005-11-20 06:52:22 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_value(const char* key_, const char* regex_)
|
|
|
|
{
|
Read configuration also from $HOME/.gitconfig
This patch is based on Pasky's, with three notable differences:
- I did not yet update the documentation
- I named it .gitconfig, not .gitrc
- git-repo-config does not barf when a unique key is overridden locally
The last means that if you have something like
[alias]
l = log --stat -M
in ~/.gitconfig, and
[alias]
l = log --stat -M next..
in $GIT_DIR/config, then
git-repo-config alias.l
returns only one value, namely the value from $GIT_DIR/config.
If you set the environment variable GIT_CONFIG, $HOME/.gitconfig is not
read, and neither $GIT_DIR/config, but $GIT_CONFIG instead.
If you set GIT_CONFIG_LOCAL instead, it is interpreted instead of
$GIT_DIR/config, but $HOME/.gitconfig is still read.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-20 01:48:03 +02:00
|
|
|
int ret = -1;
|
2006-05-09 21:24:02 +02:00
|
|
|
char *tl;
|
Read configuration also from $HOME/.gitconfig
This patch is based on Pasky's, with three notable differences:
- I did not yet update the documentation
- I named it .gitconfig, not .gitrc
- git-repo-config does not barf when a unique key is overridden locally
The last means that if you have something like
[alias]
l = log --stat -M
in ~/.gitconfig, and
[alias]
l = log --stat -M next..
in $GIT_DIR/config, then
git-repo-config alias.l
returns only one value, namely the value from $GIT_DIR/config.
If you set the environment variable GIT_CONFIG, $HOME/.gitconfig is not
read, and neither $GIT_DIR/config, but $GIT_CONFIG instead.
If you set GIT_CONFIG_LOCAL instead, it is interpreted instead of
$GIT_DIR/config, but $HOME/.gitconfig is still read.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-20 01:48:03 +02:00
|
|
|
char *global = NULL, *repo_config = NULL;
|
|
|
|
const char *local;
|
|
|
|
|
|
|
|
local = getenv("GIT_CONFIG");
|
|
|
|
if (!local) {
|
|
|
|
const char *home = getenv("HOME");
|
|
|
|
local = getenv("GIT_CONFIG_LOCAL");
|
|
|
|
if (!local)
|
|
|
|
local = repo_config = strdup(git_path("config"));
|
|
|
|
if (home)
|
|
|
|
global = strdup(mkpath("%s/.gitconfig", home));
|
|
|
|
}
|
2005-11-20 06:52:22 +01:00
|
|
|
|
2006-05-09 21:24:02 +02:00
|
|
|
key = strdup(key_);
|
|
|
|
for (tl=key+strlen(key)-1; tl >= key && *tl != '.'; --tl)
|
|
|
|
*tl = tolower(*tl);
|
|
|
|
for (tl=key; *tl && *tl != '.'; ++tl)
|
|
|
|
*tl = tolower(*tl);
|
2005-11-20 06:52:22 +01:00
|
|
|
|
2006-05-02 14:22:48 +02:00
|
|
|
if (use_key_regexp) {
|
|
|
|
key_regexp = (regex_t*)malloc(sizeof(regex_t));
|
|
|
|
if (regcomp(key_regexp, key, REG_EXTENDED)) {
|
2006-05-03 06:06:56 +02:00
|
|
|
fprintf(stderr, "Invalid key pattern: %s\n", key_);
|
Read configuration also from $HOME/.gitconfig
This patch is based on Pasky's, with three notable differences:
- I did not yet update the documentation
- I named it .gitconfig, not .gitrc
- git-repo-config does not barf when a unique key is overridden locally
The last means that if you have something like
[alias]
l = log --stat -M
in ~/.gitconfig, and
[alias]
l = log --stat -M next..
in $GIT_DIR/config, then
git-repo-config alias.l
returns only one value, namely the value from $GIT_DIR/config.
If you set the environment variable GIT_CONFIG, $HOME/.gitconfig is not
read, and neither $GIT_DIR/config, but $GIT_CONFIG instead.
If you set GIT_CONFIG_LOCAL instead, it is interpreted instead of
$GIT_DIR/config, but $HOME/.gitconfig is still read.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-20 01:48:03 +02:00
|
|
|
goto free_strings;
|
2006-05-02 14:22:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-20 06:52:22 +01:00
|
|
|
if (regex_) {
|
2005-11-20 13:24:18 +01:00
|
|
|
if (regex_[0] == '!') {
|
|
|
|
do_not_match = 1;
|
|
|
|
regex_++;
|
|
|
|
}
|
|
|
|
|
2006-01-05 01:31:02 +01:00
|
|
|
regexp = (regex_t*)malloc(sizeof(regex_t));
|
|
|
|
if (regcomp(regexp, regex_, REG_EXTENDED)) {
|
2005-11-20 06:52:22 +01:00
|
|
|
fprintf(stderr, "Invalid pattern: %s\n", regex_);
|
Read configuration also from $HOME/.gitconfig
This patch is based on Pasky's, with three notable differences:
- I did not yet update the documentation
- I named it .gitconfig, not .gitrc
- git-repo-config does not barf when a unique key is overridden locally
The last means that if you have something like
[alias]
l = log --stat -M
in ~/.gitconfig, and
[alias]
l = log --stat -M next..
in $GIT_DIR/config, then
git-repo-config alias.l
returns only one value, namely the value from $GIT_DIR/config.
If you set the environment variable GIT_CONFIG, $HOME/.gitconfig is not
read, and neither $GIT_DIR/config, but $GIT_CONFIG instead.
If you set GIT_CONFIG_LOCAL instead, it is interpreted instead of
$GIT_DIR/config, but $HOME/.gitconfig is still read.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-20 01:48:03 +02:00
|
|
|
goto free_strings;
|
2005-11-20 06:52:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Read configuration also from $HOME/.gitconfig
This patch is based on Pasky's, with three notable differences:
- I did not yet update the documentation
- I named it .gitconfig, not .gitrc
- git-repo-config does not barf when a unique key is overridden locally
The last means that if you have something like
[alias]
l = log --stat -M
in ~/.gitconfig, and
[alias]
l = log --stat -M next..
in $GIT_DIR/config, then
git-repo-config alias.l
returns only one value, namely the value from $GIT_DIR/config.
If you set the environment variable GIT_CONFIG, $HOME/.gitconfig is not
read, and neither $GIT_DIR/config, but $GIT_CONFIG instead.
If you set GIT_CONFIG_LOCAL instead, it is interpreted instead of
$GIT_DIR/config, but $HOME/.gitconfig is still read.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-20 01:48:03 +02:00
|
|
|
if (do_all && global)
|
|
|
|
git_config_from_file(show_config, global);
|
|
|
|
git_config_from_file(show_config, local);
|
|
|
|
if (!do_all && !seen && global)
|
|
|
|
git_config_from_file(show_config, global);
|
|
|
|
|
2005-11-20 06:52:22 +01:00
|
|
|
free(key);
|
2006-01-05 01:31:02 +01:00
|
|
|
if (regexp) {
|
|
|
|
regfree(regexp);
|
|
|
|
free(regexp);
|
2005-11-20 06:52:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (do_all)
|
Read configuration also from $HOME/.gitconfig
This patch is based on Pasky's, with three notable differences:
- I did not yet update the documentation
- I named it .gitconfig, not .gitrc
- git-repo-config does not barf when a unique key is overridden locally
The last means that if you have something like
[alias]
l = log --stat -M
in ~/.gitconfig, and
[alias]
l = log --stat -M next..
in $GIT_DIR/config, then
git-repo-config alias.l
returns only one value, namely the value from $GIT_DIR/config.
If you set the environment variable GIT_CONFIG, $HOME/.gitconfig is not
read, and neither $GIT_DIR/config, but $GIT_CONFIG instead.
If you set GIT_CONFIG_LOCAL instead, it is interpreted instead of
$GIT_DIR/config, but $HOME/.gitconfig is still read.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-20 01:48:03 +02:00
|
|
|
ret = !seen;
|
|
|
|
else
|
|
|
|
ret = (seen == 1) ? 0 : 1;
|
|
|
|
|
|
|
|
free_strings:
|
|
|
|
if (repo_config)
|
|
|
|
free(repo_config);
|
|
|
|
if (global)
|
|
|
|
free(global);
|
|
|
|
return ret;
|
2005-11-20 06:52:22 +01:00
|
|
|
}
|
2005-11-17 22:44:55 +01:00
|
|
|
|
2006-08-02 23:51:59 +02:00
|
|
|
int cmd_repo_config(int argc, const char **argv, const char *prefix)
|
2005-11-17 22:44:55 +01:00
|
|
|
{
|
2006-05-25 17:22:42 +02:00
|
|
|
int nongit = 0;
|
|
|
|
setup_git_directory_gently(&nongit);
|
2006-02-12 04:14:48 +01:00
|
|
|
|
|
|
|
while (1 < argc) {
|
|
|
|
if (!strcmp(argv[1], "--int"))
|
|
|
|
type = T_INT;
|
|
|
|
else if (!strcmp(argv[1], "--bool"))
|
|
|
|
type = T_BOOL;
|
2006-05-02 21:54:12 +02:00
|
|
|
else if (!strcmp(argv[1], "--list") || !strcmp(argv[1], "-l"))
|
|
|
|
return git_config(show_all_config);
|
2006-02-12 04:14:48 +01:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
|
2005-11-17 22:44:55 +01:00
|
|
|
switch (argc) {
|
|
|
|
case 2:
|
2005-11-20 06:52:22 +01:00
|
|
|
return get_value(argv[1], NULL);
|
2005-11-17 22:44:55 +01:00
|
|
|
case 3:
|
|
|
|
if (!strcmp(argv[1], "--unset"))
|
|
|
|
return git_config_set(argv[2], NULL);
|
2005-11-20 06:52:22 +01:00
|
|
|
else if (!strcmp(argv[1], "--unset-all"))
|
|
|
|
return git_config_set_multivar(argv[2], NULL, NULL, 1);
|
|
|
|
else if (!strcmp(argv[1], "--get"))
|
|
|
|
return get_value(argv[2], NULL);
|
|
|
|
else if (!strcmp(argv[1], "--get-all")) {
|
|
|
|
do_all = 1;
|
|
|
|
return get_value(argv[2], NULL);
|
2006-05-02 14:22:48 +02:00
|
|
|
} else if (!strcmp(argv[1], "--get-regexp")) {
|
|
|
|
show_keys = 1;
|
|
|
|
use_key_regexp = 1;
|
|
|
|
do_all = 1;
|
|
|
|
return get_value(argv[2], NULL);
|
2005-11-20 06:52:22 +01:00
|
|
|
} else
|
|
|
|
|
2005-11-17 22:44:55 +01:00
|
|
|
return git_config_set(argv[1], argv[2]);
|
|
|
|
case 4:
|
|
|
|
if (!strcmp(argv[1], "--unset"))
|
2005-11-20 06:52:22 +01:00
|
|
|
return git_config_set_multivar(argv[2], NULL, argv[3], 0);
|
|
|
|
else if (!strcmp(argv[1], "--unset-all"))
|
|
|
|
return git_config_set_multivar(argv[2], NULL, argv[3], 1);
|
|
|
|
else if (!strcmp(argv[1], "--get"))
|
|
|
|
return get_value(argv[2], argv[3]);
|
|
|
|
else if (!strcmp(argv[1], "--get-all")) {
|
|
|
|
do_all = 1;
|
|
|
|
return get_value(argv[2], argv[3]);
|
2006-05-02 14:22:48 +02:00
|
|
|
} else if (!strcmp(argv[1], "--get-regexp")) {
|
|
|
|
show_keys = 1;
|
|
|
|
use_key_regexp = 1;
|
|
|
|
do_all = 1;
|
|
|
|
return get_value(argv[2], argv[3]);
|
2005-11-20 06:52:22 +01:00
|
|
|
} else if (!strcmp(argv[1], "--replace-all"))
|
|
|
|
|
|
|
|
return git_config_set_multivar(argv[2], argv[3], NULL, 1);
|
2005-11-17 22:44:55 +01:00
|
|
|
else
|
2005-11-20 06:52:22 +01:00
|
|
|
|
|
|
|
return git_config_set_multivar(argv[1], argv[2], argv[3], 0);
|
|
|
|
case 5:
|
|
|
|
if (!strcmp(argv[1], "--replace-all"))
|
|
|
|
return git_config_set_multivar(argv[2], argv[3], argv[4], 1);
|
|
|
|
case 1:
|
2005-11-17 22:44:55 +01:00
|
|
|
default:
|
|
|
|
usage(git_config_set_usage);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|