Josh Steadmon <steadmon@xxxxxxxxxx> writes: > +/** > + * Install upstream tracking configuration for a branch; specifically, add > + * `branch.<name>.remote` and `branch.<name>.merge` entries. > + * > + * `flag` contains integer flags for options; currently only > + * BRANCH_CONFIG_VERBOSE is checked. > + * > + * `local` is the name of the branch whose configuration we're installing. > + * > + * `origin` is the name of the remote owning the upstream branches. NULL means > + * the upstream branches are local to this repo. > + * > + * `remotes` is a list of refs that are upstream of local > + */ > +static int install_branch_config_multiple_remotes(int flag, const char *local, > + const char *origin, struct string_list *remotes) > { > const char *shortname = NULL; > struct strbuf key = STRBUF_INIT; > + struct string_list_item *item; > int rebasing = should_setup_rebase(origin); > > + if (!remotes->nr) > + BUG("must provide at least one remote for branch config"); > + if (rebasing && remotes->nr > 1) > + die(_("cannot inherit upstream tracking configuration of " > + "multiple refs when rebasing is requested")); > + > + /* > + * If the new branch is trying to track itself, something has gone > + * wrong. Warn the user and don't proceed any further. > + */ > + if (!origin) > + for_each_string_list_item(item, remotes) > + if (skip_prefix(item->string, "refs/heads/", &shortname) > + && !strcmp(local, shortname)) { > + warning(_("not setting branch '%s' as its own upstream."), > + local); > + return 0; > + } Added comments make it easier to follow what is going on and more importantly why. I very much like it ;-) > @@ -75,8 +96,17 @@ int install_branch_config(int flag, const char *local, const char *origin, const > > strbuf_reset(&key); > strbuf_addf(&key, "branch.%s.merge", local); > - if (git_config_set_gently(key.buf, remote) < 0) > + /* > + * We want to overwrite any existing config with all the branches in > + * "remotes". Override any existing config, then write our branches. If > + * more than one is provided, use CONFIG_REGEX_NONE to preserve what > + * we've written so far. > + */ Sorry, but I do not quite get this comment in two ways. - It talks about "if more than one" but the code seems to use regex-none even when there is only one. - I agree that use of set-multivar with regex-none is the right way to append new values to multi valued configuration, but wouldn't the sequence be (1) first clear everything and then (2) set new ones one by one? Ahh, OK, the "config-set" we do first is the "clear everything" step. We want to overwrite any existing config. First clear any existing config, and then write our branches one-by-one. Use of CONFIG_REGEX_NONE ensures that the multiple values are appended to the same variable. perhaps? > + if (git_config_set_gently(key.buf, NULL) < 0) > goto out_err; > + for_each_string_list_item(item, remotes) > + if (git_config_set_multivar_gently(key.buf, item->string, CONFIG_REGEX_NONE, 0) < 0) > + goto out_err; > @@ -87,29 +117,40 @@ int install_branch_config(int flag, const char *local, const char *origin, const > strbuf_release(&key); > > if (flag & BRANCH_CONFIG_VERBOSE) { > + struct strbuf tmp_ref_name = STRBUF_INIT; > + struct string_list friendly_ref_names = STRING_LIST_INIT_DUP; > + > + for_each_string_list_item(item, remotes) { > + shortname = item->string; > + skip_prefix(shortname, "refs/heads/", &shortname); > + if (origin) { > + strbuf_addf(&tmp_ref_name, "%s/%s", > + origin, shortname); > + string_list_append_nodup( > + &friendly_ref_names, > + strbuf_detach(&tmp_ref_name, NULL)); > + } else { > + string_list_append( > + &friendly_ref_names, shortname); > + } > + } > + > + if (remotes->nr == 1) { > + /* > + * Rebasing is only allowed in the case of a single > + * upstream branch. > + */ There does not seem to be any code to forbid "rebasing" when remotes->nr != 1, though. Did I miss a call to die() earlier? > + printf_ln(rebasing ? > + _("branch '%s' set up to track '%s' by rebasing.") : > + _("branch '%s' set up to track '%s'."), > + local, friendly_ref_names.items[0].string); > } else { > + printf_ln(_("branch '%s' set up to track:"), local); > + for_each_string_list_item(item, &friendly_ref_names) > + printf_ln(" %s", item->string); In other words, I would have expected something in this else clause. > } Thanks.