remote: fix status with branch...rebase=preserve

Commit 66713ef (pull: allow pull to preserve merges when rebasing)
didn't include an update so 'git remote status' parses branch.<name>.rebase=preserve
correctly, let's do that.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Felipe Contreras 2013-12-07 07:08:37 -06:00 коммит произвёл Junio C Hamano
Родитель 379484b551
Коммит 0a54f70905
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -309,8 +309,13 @@ static int config_read_branches(const char *key, const char *value, void *cb)
space = strchr(value, ' '); space = strchr(value, ' ');
} }
string_list_append(&info->merge, xstrdup(value)); string_list_append(&info->merge, xstrdup(value));
} else } else {
info->rebase = git_config_bool(orig_key, value); int v = git_config_maybe_bool(orig_key, value);
if (v >= 0)
info->rebase = v;
else if (!strcmp(value, "preserve"))
info->rebase = 1;
}
} }
return 0; return 0;
} }