2006-08-02 23:51:59 +02:00
|
|
|
#include "builtin.h"
|
2005-11-17 22:44:55 +01:00
|
|
|
#include "cache.h"
|
2007-11-28 07:41:05 +01:00
|
|
|
#include "color.h"
|
2005-11-17 22:44:55 +01:00
|
|
|
|
|
|
|
static const char git_config_set_usage[] =
|
2007-12-06 02:26:11 +01:00
|
|
|
"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 | --get-color var [default] | --get-colorbool name [stdout-is-tty]";
|
2005-11-20 06:52:22 +01:00
|
|
|
|
2006-08-15 19:23:48 +02:00
|
|
|
static char *key;
|
|
|
|
static regex_t *key_regexp;
|
|
|
|
static regex_t *regexp;
|
|
|
|
static int show_keys;
|
|
|
|
static int use_key_regexp;
|
|
|
|
static int do_all;
|
|
|
|
static int do_not_match;
|
|
|
|
static int seen;
|
2007-06-25 16:03:55 +02:00
|
|
|
static char delim = '=';
|
|
|
|
static char key_delim = ' ';
|
|
|
|
static char term = '\n';
|
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_)
|
2007-06-25 16:03:55 +02:00
|
|
|
printf("%s%c%s%c", key_, delim, value_, term);
|
2006-04-25 00:59:25 +02:00
|
|
|
else
|
2007-06-25 16:03:55 +02:00
|
|
|
printf("%s%c", key_, term);
|
2006-04-25 00:59:25 +02:00
|
|
|
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 &&
|
2007-12-05 16:11:24 +01:00
|
|
|
(do_not_match ^ !!regexec(regexp, (value_?value_:""), 0, NULL, 0)))
|
2006-05-03 14:41:03 +02:00
|
|
|
return 0;
|
|
|
|
|
2007-06-25 16:03:54 +02:00
|
|
|
if (show_keys) {
|
|
|
|
if (value_)
|
2007-06-25 16:03:55 +02:00
|
|
|
printf("%s%c", key_, key_delim);
|
2007-06-25 16:03:54 +02:00
|
|
|
else
|
|
|
|
printf("%s", key_);
|
|
|
|
}
|
2006-05-03 14:41:03 +02:00
|
|
|
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
|
2007-06-25 16:03:55 +02:00
|
|
|
printf("%s%c", vptr, term);
|
2006-05-03 14:41:03 +02:00
|
|
|
|
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;
|
2007-02-14 12:48:14 +01:00
|
|
|
const char *system_wide = NULL, *local;
|
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
|
|
|
|
2006-12-19 10:28:15 +01:00
|
|
|
local = getenv(CONFIG_ENVIRONMENT);
|
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 (!local) {
|
|
|
|
const char *home = getenv("HOME");
|
2006-12-19 10:28:15 +01:00
|
|
|
local = getenv(CONFIG_LOCAL_ENVIRONMENT);
|
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 (!local)
|
2006-09-02 06:16:31 +02:00
|
|
|
local = repo_config = xstrdup(git_path("config"));
|
2008-02-06 11:11:18 +01:00
|
|
|
if (git_config_global() && home)
|
2006-09-02 06:16:31 +02:00
|
|
|
global = xstrdup(mkpath("%s/.gitconfig", home));
|
2008-02-06 11:11:18 +01:00
|
|
|
if (git_config_system())
|
|
|
|
system_wide = git_etc_gitconfig();
|
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
|
|
|
}
|
2005-11-20 06:52:22 +01:00
|
|
|
|
2006-09-02 06:16:31 +02:00
|
|
|
key = xstrdup(key_);
|
2006-05-09 21:24:02 +02:00
|
|
|
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) {
|
2006-09-01 00:32:39 +02:00
|
|
|
key_regexp = (regex_t*)xmalloc(sizeof(regex_t));
|
2006-05-02 14:22:48 +02:00
|
|
|
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-09-01 00:32:39 +02:00
|
|
|
regexp = (regex_t*)xmalloc(sizeof(regex_t));
|
2006-01-05 01:31:02 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-14 12:48:14 +01:00
|
|
|
if (do_all && system_wide)
|
|
|
|
git_config_from_file(show_config, system_wide);
|
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);
|
2007-02-14 12:48:14 +01:00
|
|
|
if (!do_all && !seen && system_wide)
|
|
|
|
git_config_from_file(show_config, system_wide);
|
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
|
|
|
|
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
|
2006-07-03 22:47:55 +02:00
|
|
|
ret = (seen == 1) ? 0 : seen > 1 ? 2 : 1;
|
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
|
|
|
|
|
|
|
free_strings:
|
2006-08-28 06:19:39 +02:00
|
|
|
free(repo_config);
|
|
|
|
free(global);
|
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
|
|
|
return ret;
|
2005-11-20 06:52:22 +01:00
|
|
|
}
|
2005-11-17 22:44:55 +01:00
|
|
|
|
2007-06-25 16:00:24 +02:00
|
|
|
char *normalize_value(const char *key, const char *value)
|
|
|
|
{
|
|
|
|
char *normalized;
|
|
|
|
|
|
|
|
if (!value)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (type == T_RAW)
|
|
|
|
normalized = xstrdup(value);
|
|
|
|
else {
|
|
|
|
normalized = xmalloc(64);
|
|
|
|
if (type == T_INT) {
|
|
|
|
int v = git_config_int(key, value);
|
|
|
|
sprintf(normalized, "%d", v);
|
|
|
|
}
|
|
|
|
else if (type == T_BOOL)
|
|
|
|
sprintf(normalized, "%s",
|
|
|
|
git_config_bool(key, value) ? "true" : "false");
|
|
|
|
}
|
|
|
|
|
|
|
|
return normalized;
|
|
|
|
}
|
|
|
|
|
2007-11-28 07:41:05 +01:00
|
|
|
static int get_color_found;
|
|
|
|
static const char *get_color_slot;
|
|
|
|
static char parsed_color[COLOR_MAXLEN];
|
|
|
|
|
|
|
|
static int git_get_color_config(const char *var, const char *value)
|
|
|
|
{
|
|
|
|
if (!strcmp(var, get_color_slot)) {
|
2008-02-11 19:48:12 +01:00
|
|
|
if (!value)
|
|
|
|
config_error_nonbool(var);
|
2007-11-28 07:41:05 +01:00
|
|
|
color_parse(value, var, parsed_color);
|
|
|
|
get_color_found = 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_color(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* grab the color setting for the given slot from the configuration,
|
|
|
|
* or parse the default value if missing, and return ANSI color
|
|
|
|
* escape sequence.
|
|
|
|
*
|
|
|
|
* e.g.
|
|
|
|
* git config --get-color color.diff.whitespace "blue reverse"
|
|
|
|
*/
|
|
|
|
const char *def_color = NULL;
|
|
|
|
|
|
|
|
switch (argc) {
|
|
|
|
default:
|
|
|
|
usage(git_config_set_usage);
|
|
|
|
case 2:
|
|
|
|
def_color = argv[1];
|
|
|
|
/* fallthru */
|
|
|
|
case 1:
|
|
|
|
get_color_slot = argv[0];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
get_color_found = 0;
|
|
|
|
parsed_color[0] = '\0';
|
|
|
|
git_config(git_get_color_config);
|
|
|
|
|
|
|
|
if (!get_color_found && def_color)
|
|
|
|
color_parse(def_color, "command line", parsed_color);
|
|
|
|
|
|
|
|
fputs(parsed_color, stdout);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-06 02:26:11 +01:00
|
|
|
static int stdout_is_tty;
|
|
|
|
static int get_colorbool_found;
|
2007-12-06 07:12:07 +01:00
|
|
|
static int get_diff_color_found;
|
2007-12-06 02:26:11 +01:00
|
|
|
static int git_get_colorbool_config(const char *var, const char *value)
|
|
|
|
{
|
2007-12-06 07:12:07 +01:00
|
|
|
if (!strcmp(var, get_color_slot)) {
|
2007-12-06 02:26:11 +01:00
|
|
|
get_colorbool_found =
|
|
|
|
git_config_colorbool(var, value, stdout_is_tty);
|
2007-12-06 07:12:07 +01:00
|
|
|
}
|
|
|
|
if (!strcmp(var, "diff.color")) {
|
|
|
|
get_diff_color_found =
|
|
|
|
git_config_colorbool(var, value, stdout_is_tty);
|
|
|
|
}
|
2007-12-06 02:26:11 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_colorbool(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* git config --get-colorbool <slot> [<stdout-is-tty>]
|
|
|
|
*
|
|
|
|
* returns "true" or "false" depending on how <slot>
|
|
|
|
* is configured.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
stdout_is_tty = git_config_bool("command line", argv[1]);
|
|
|
|
else if (argc == 1)
|
|
|
|
stdout_is_tty = isatty(1);
|
|
|
|
else
|
|
|
|
usage(git_config_set_usage);
|
2007-12-06 07:12:07 +01:00
|
|
|
get_colorbool_found = -1;
|
|
|
|
get_diff_color_found = -1;
|
2007-12-06 02:26:11 +01:00
|
|
|
get_color_slot = argv[0];
|
|
|
|
git_config(git_get_colorbool_config);
|
|
|
|
|
2007-12-06 07:12:07 +01:00
|
|
|
if (get_colorbool_found < 0) {
|
|
|
|
if (!strcmp(get_color_slot, "color.diff"))
|
|
|
|
get_colorbool_found = get_diff_color_found;
|
|
|
|
if (get_colorbool_found < 0)
|
|
|
|
get_colorbool_found = 0;
|
|
|
|
}
|
|
|
|
|
2007-12-06 02:26:11 +01:00
|
|
|
if (argc == 1) {
|
|
|
|
return get_colorbool_found ? 0 : 1;
|
|
|
|
} else {
|
|
|
|
printf("%s\n", get_colorbool_found ? "true" : "false");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-29 01:16:53 +01:00
|
|
|
int cmd_config(int argc, const char **argv, const char *prefix)
|
2005-11-17 22:44:55 +01:00
|
|
|
{
|
2008-03-25 22:06:26 +01:00
|
|
|
int nongit;
|
2007-06-25 16:00:24 +02:00
|
|
|
char* value;
|
2007-10-12 13:32:51 +02:00
|
|
|
const char *file = 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;
|
2007-10-05 22:16:44 +02:00
|
|
|
else if (!strcmp(argv[1], "--list") || !strcmp(argv[1], "-l")) {
|
|
|
|
if (argc != 2)
|
|
|
|
usage(git_config_set_usage);
|
2007-10-12 13:40:57 +02:00
|
|
|
if (git_config(show_all_config) < 0 && file && errno)
|
|
|
|
die("unable to read config file %s: %s", file,
|
|
|
|
strerror(errno));
|
|
|
|
return 0;
|
2007-10-05 22:16:44 +02:00
|
|
|
}
|
2006-11-02 16:44:20 +01:00
|
|
|
else if (!strcmp(argv[1], "--global")) {
|
|
|
|
char *home = getenv("HOME");
|
|
|
|
if (home) {
|
|
|
|
char *user_config = xstrdup(mkpath("%s/.gitconfig", home));
|
2007-06-28 16:15:25 +02:00
|
|
|
setenv(CONFIG_ENVIRONMENT, user_config, 1);
|
2006-11-02 16:44:20 +01:00
|
|
|
free(user_config);
|
|
|
|
} else {
|
|
|
|
die("$HOME not set");
|
|
|
|
}
|
2007-02-14 12:48:14 +01:00
|
|
|
}
|
|
|
|
else if (!strcmp(argv[1], "--system"))
|
2007-11-13 21:05:05 +01:00
|
|
|
setenv(CONFIG_ENVIRONMENT, git_etc_gitconfig(), 1);
|
2007-07-31 11:58:43 +02:00
|
|
|
else if (!strcmp(argv[1], "--file") || !strcmp(argv[1], "-f")) {
|
|
|
|
if (argc < 3)
|
|
|
|
usage(git_config_set_usage);
|
2007-10-12 13:32:51 +02:00
|
|
|
if (!is_absolute_path(argv[2]) && file)
|
|
|
|
file = prefix_filename(file, strlen(file),
|
|
|
|
argv[2]);
|
|
|
|
else
|
|
|
|
file = argv[2];
|
|
|
|
setenv(CONFIG_ENVIRONMENT, file, 1);
|
2007-07-31 11:58:43 +02:00
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
}
|
2007-06-25 16:03:55 +02:00
|
|
|
else if (!strcmp(argv[1], "--null") || !strcmp(argv[1], "-z")) {
|
|
|
|
term = '\0';
|
|
|
|
delim = '\n';
|
|
|
|
key_delim = '\n';
|
|
|
|
}
|
2007-02-14 12:48:14 +01:00
|
|
|
else if (!strcmp(argv[1], "--rename-section")) {
|
2006-12-16 15:14:14 +01:00
|
|
|
int ret;
|
|
|
|
if (argc != 4)
|
|
|
|
usage(git_config_set_usage);
|
|
|
|
ret = git_config_rename_section(argv[2], argv[3]);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
if (ret == 0) {
|
|
|
|
fprintf(stderr, "No such section!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2007-02-14 12:48:14 +01:00
|
|
|
}
|
2007-03-02 21:53:33 +01:00
|
|
|
else if (!strcmp(argv[1], "--remove-section")) {
|
|
|
|
int ret;
|
|
|
|
if (argc != 3)
|
|
|
|
usage(git_config_set_usage);
|
|
|
|
ret = git_config_rename_section(argv[2], NULL);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
if (ret == 0) {
|
|
|
|
fprintf(stderr, "No such section!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2007-11-28 07:41:05 +01:00
|
|
|
} else if (!strcmp(argv[1], "--get-color")) {
|
|
|
|
return get_color(argc-2, argv+2);
|
2007-12-06 02:26:11 +01:00
|
|
|
} else if (!strcmp(argv[1], "--get-colorbool")) {
|
|
|
|
return get_colorbool(argc-2, argv+2);
|
2007-11-28 07:41:05 +01:00
|
|
|
} else
|
2006-02-12 04:14:48 +01:00
|
|
|
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);
|
2007-06-25 16:00:24 +02:00
|
|
|
} else {
|
|
|
|
value = normalize_value(argv[1], argv[2]);
|
|
|
|
return git_config_set(argv[1], value);
|
|
|
|
}
|
2005-11-17 22:44:55 +01:00
|
|
|
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]);
|
2007-06-25 16:00:24 +02:00
|
|
|
} else if (!strcmp(argv[1], "--add")) {
|
|
|
|
value = normalize_value(argv[2], argv[3]);
|
|
|
|
return git_config_set_multivar(argv[2], value, "^$", 0);
|
|
|
|
} else if (!strcmp(argv[1], "--replace-all")) {
|
|
|
|
value = normalize_value(argv[2], argv[3]);
|
|
|
|
return git_config_set_multivar(argv[2], value, NULL, 1);
|
|
|
|
} else {
|
|
|
|
value = normalize_value(argv[1], argv[2]);
|
|
|
|
return git_config_set_multivar(argv[1], value, argv[3], 0);
|
|
|
|
}
|
2005-11-20 06:52:22 +01:00
|
|
|
case 5:
|
2007-06-25 16:00:24 +02:00
|
|
|
if (!strcmp(argv[1], "--replace-all")) {
|
|
|
|
value = normalize_value(argv[2], argv[3]);
|
|
|
|
return git_config_set_multivar(argv[2], value, argv[4], 1);
|
|
|
|
}
|
2005-11-20 06:52:22 +01:00
|
|
|
case 1:
|
2005-11-17 22:44:55 +01:00
|
|
|
default:
|
|
|
|
usage(git_config_set_usage);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|