remote: allow `guess_remote_head()` to suppress advice

The `repo_default_branch_name()` invoked through `guess_remote_head()`
is configured to always display the default branch advice message.

Adapt `guess_remote_head()` to accept flags and convert the `all`
parameter to a flag. Add the `REMOTE_GUESS_HEAD_QUIET` flag to to enable
suppression of advice messages. Call sites are updated accordingly.

Signed-off-by: Justin Tobler <jltobler@gmail.com>
Acked-by: Phillip Wood <phillip.wood@dunelm.org.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
main
Justin Tobler 2025-03-24 19:51:46 -05:00 committed by Junio C Hamano
parent 683c54c999
commit d5d284df91
4 changed files with 15 additions and 10 deletions

View File

@ -1638,7 +1638,7 @@ static int set_head(const struct ref *remote_refs, struct remote *remote)

get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
fetch_map, 1);
fetch_map, REMOTE_GUESS_HEAD_ALL);
for (ref = matches; ref; ref = ref->next) {
string_list_append(&heads, strip_refshead(ref->name));
}

View File

@ -511,7 +511,7 @@ static int get_head_names(const struct ref *remote_refs, struct ref_states *stat

get_fetch_map(remote_refs, &refspec, &fetch_map_tail, 0);
matches = guess_remote_head(find_ref_by_name(remote_refs, "HEAD"),
fetch_map, 1);
fetch_map, REMOTE_GUESS_HEAD_ALL);
for (ref = matches; ref; ref = ref->next)
string_list_append(&states->heads, abbrev_branch(ref->name));


View File

@ -2297,7 +2297,7 @@ struct ref *get_local_heads(void)

struct ref *guess_remote_head(const struct ref *head,
const struct ref *refs,
int all)
unsigned flags)
{
const struct ref *r;
struct ref *list = NULL;
@ -2315,8 +2315,10 @@ struct ref *guess_remote_head(const struct ref *head,
return copy_ref(find_ref_by_name(refs, head->symref));

/* If a remote branch exists with the default branch name, let's use it. */
if (!all) {
char *default_branch = repo_default_branch_name(the_repository, 0);
if (!(flags & REMOTE_GUESS_HEAD_ALL)) {
char *default_branch =
repo_default_branch_name(the_repository,
flags & REMOTE_GUESS_HEAD_QUIET);
char *ref = xstrfmt("refs/heads/%s", default_branch);

r = find_ref_by_name(refs, ref);
@ -2339,7 +2341,7 @@ struct ref *guess_remote_head(const struct ref *head,
oideq(&r->old_oid, &head->old_oid)) {
*tail = copy_ref(r);
tail = &((*tail)->next);
if (!all)
if (!(flags & REMOTE_GUESS_HEAD_ALL))
break;
}
}

View File

@ -387,15 +387,18 @@ int format_tracking_info(struct branch *branch, struct strbuf *sb,
int show_divergence_advice);

struct ref *get_local_heads(void);

/*
* Find refs from a list which are likely to be pointed to by the given HEAD
* ref. If 'all' is false, returns the most likely ref; otherwise, returns a
* list of all candidate refs. If no match is found (or 'head' is NULL),
* returns NULL. All returns are newly allocated and should be freed.
* ref. If REMOTE_GUESS_HEAD_ALL is set, return a list of all candidate refs;
* otherwise, return the most likely ref. If no match is found (or 'head' is
* NULL), returns NULL. All returns are newly allocated and should be freed.
*/
#define REMOTE_GUESS_HEAD_ALL (1 << 0)
#define REMOTE_GUESS_HEAD_QUIET (1 << 1)
struct ref *guess_remote_head(const struct ref *head,
const struct ref *refs,
int all);
unsigned flags);

/* Return refs which no longer exist on remote */
struct ref *get_stale_heads(struct refspec *rs, struct ref *fetch_map);