remote.c: simplify a bit of code using git_config_string()
A small segment where handle_config() parses the branch.remote configuration variable can be simplified using git_config_string(). Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
cc3e4eba72
commit
b4b634352d
5
remote.c
5
remote.c
@ -357,9 +357,8 @@ static int handle_config(const char *key, const char *value, void *cb)
|
|||||||
return 0;
|
return 0;
|
||||||
branch = make_branch(name, subkey - name);
|
branch = make_branch(name, subkey - name);
|
||||||
if (!strcmp(subkey, ".remote")) {
|
if (!strcmp(subkey, ".remote")) {
|
||||||
if (!value)
|
if (git_config_string(&branch->remote_name, key, value))
|
||||||
return config_error_nonbool(key);
|
return -1;
|
||||||
branch->remote_name = xstrdup(value);
|
|
||||||
if (branch == current_branch) {
|
if (branch == current_branch) {
|
||||||
default_remote_name = branch->remote_name;
|
default_remote_name = branch->remote_name;
|
||||||
explicit_default_remote_name = 1;
|
explicit_default_remote_name = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user