* [PATCH 0/2] rebase: handle --update-refs branch symrefs
@ 2026-05-28 5:41 Son Luong Ngoc via GitGitGadget
2026-05-28 5:42 ` [PATCH 1/2] t3404: add failing branch symref test Son Luong Ngoc via GitGitGadget
` (3 more replies)
0 siblings, 4 replies; 13+ messages in thread
From: Son Luong Ngoc via GitGitGadget @ 2026-05-28 5:41 UTC (permalink / raw)
To: git; +Cc: Son Luong Ngoc
git rebase --update-refs can fail after the normal rebase path has
successfully updated the current branch when another local branch is a
symbolic ref to it.
One practical way to arrive at that setup is a default branch rename from
master to main. While the migration is in progress, a user may keep
refs/heads/main as a symbolic ref to refs/heads/master so that both names
continue to work locally.
If pull.rebase is enabled, a plain git pull can then finish the rebase of
master and still fail while trying to update the main alias. The reported
failure looked like this, with line breaks adjusted for the cover letter:
Successfully rebased and updated refs/heads/master.
error: update_ref failed for ref 'refs/heads/main':
cannot lock ref 'refs/heads/main':
is at fc2c7bd5f17abec7861ef759edcd33a1e16662a1
but expected 531cabdfb49098d6ffa502ed4bf91d1b35edfcfa
Updated the following refs with --update-refs:
Failed to update the following refs with --update-refs:
refs/heads/main
The sequencer builds its update-ref todo commands from local branch
decorations. It excludes the current branch by comparing the literal
decoration name with the resolved HEAD ref, so refs/heads/main is not
recognized as the current branch alias. The final update then dereferences
the alias back to master, but master has already moved, so the old-OID check
fails.
This series keeps that failure mode explicit by adding a known-breakage test
first, so that the behavioral expectation is clear before the fix. The fix
then resolves local branch symref decorations before queuing update-ref
commands, skips aliases of the current branch, and skips duplicate
referents. That keeps the existing old-OID protection on the single real
branch update. It also avoids teaching the final ref update step to treat
this race-looking mismatch as success.
Patch overview:
* Patch 1 records the branch-symref failure in t3404.
* Patch 2 flips the test and canonicalizes sequencer behavior.
Son Luong Ngoc (2):
t3404: add failing branch symref test
rebase: skip branch symref aliases
sequencer.c | 63 +++++++++++++++++++++++++++++------
t/t3404-rebase-interactive.sh | 25 ++++++++++++++
2 files changed, 77 insertions(+), 11 deletions(-)
base-commit: c69baaf57ba26cf117c2b6793802877f19738b0d
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-2126%2Fsluongng%2Fsl%2Frebase-update-refs-symrefs-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-2126/sluongng/sl/rebase-update-refs-symrefs-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/2126
--
gitgitgadget
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH 1/2] t3404: add failing branch symref test 2026-05-28 5:41 [PATCH 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget @ 2026-05-28 5:42 ` Son Luong Ngoc via GitGitGadget 2026-06-01 13:52 ` Phillip Wood 2026-05-28 5:42 ` [PATCH 2/2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget ` (2 subsequent siblings) 3 siblings, 1 reply; 13+ messages in thread From: Son Luong Ngoc via GitGitGadget @ 2026-05-28 5:42 UTC (permalink / raw) To: git; +Cc: Son Luong Ngoc, Son Luong Ngoc From: Son Luong Ngoc <sluongng@gmail.com> rebase --update-refs queues local branch decorations by their literal refnames. When a branch such as refs/heads/main is a symbolic ref to the current branch, the normal rebase path first updates the current branch and the queued symref update later tries to update the same referent with the old value it recorded before the rebase. Add a known-breakage test that exercises this case so that the fix can flip it to test_expect_success. The expected behavior is that the branch symref keeps pointing at the rebased current branch. Signed-off-by: Son Luong Ngoc <sluongng@gmail.com> --- t/t3404-rebase-interactive.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index 58b3bb0c27..42ba8cc313 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -1978,6 +1978,31 @@ test_expect_success '--update-refs ignores non-branch decorations' ' test_cmp expect actual ' +test_expect_failure '--update-refs skips branch symrefs to current branch' ' + test_when_finished " + test_might_fail git rebase --abort && + git checkout primary && + test_might_fail git symbolic-ref -d refs/heads/update-refs-symref-alias && + test_might_fail git branch -D update-refs-symref update-refs-symref-base + " && + git checkout -B update-refs-symref-base primary && + test_commit --no-tag update-refs-symref-base symref-base.t && + git checkout -B update-refs-symref && + test_commit --no-tag update-refs-symref-topic symref-topic.t && + git checkout update-refs-symref-base && + test_commit --no-tag update-refs-symref-newbase symref-newbase.t && + git checkout update-refs-symref && + git symbolic-ref refs/heads/update-refs-symref-alias refs/heads/update-refs-symref && + + git rebase --update-refs update-refs-symref-base 2>err && + + test_cmp_rev update-refs-symref-base update-refs-symref^ && + test_cmp_rev refs/heads/update-refs-symref refs/heads/update-refs-symref-alias && + test_write_lines refs/heads/update-refs-symref >expect && + git symbolic-ref refs/heads/update-refs-symref-alias >actual && + test_cmp expect actual +' + test_expect_success '--update-refs updates refs correctly' ' git checkout -B update-refs no-conflict-branch && git branch -f base HEAD~4 && -- gitgitgadget ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 1/2] t3404: add failing branch symref test 2026-05-28 5:42 ` [PATCH 1/2] t3404: add failing branch symref test Son Luong Ngoc via GitGitGadget @ 2026-06-01 13:52 ` Phillip Wood 0 siblings, 0 replies; 13+ messages in thread From: Phillip Wood @ 2026-06-01 13:52 UTC (permalink / raw) To: Son Luong Ngoc via GitGitGadget, git; +Cc: Son Luong Ngoc On 28/05/2026 06:42, Son Luong Ngoc via GitGitGadget wrote: > From: Son Luong Ngoc <sluongng@gmail.com> > > rebase --update-refs queues local branch decorations by their literal > refnames. When a branch such as refs/heads/main is a symbolic ref to > the current branch, the normal rebase path first updates the current > branch and the queued symref update later tries to update the same > referent with the old value it recorded before the rebase. > > Add a known-breakage test that exercises this case so that the fix can > flip it to test_expect_success. The expected behavior is that the branch > symref keeps pointing at the rebased current branch. Thanks for adding a test, I'd find it easier to review this series if the test was added in the same patch as the fix which is our usual practice. > +test_expect_failure '--update-refs skips branch symrefs to current branch' ' > + test_when_finished " > + test_might_fail git rebase --abort && > + git checkout primary && > + test_might_fail git symbolic-ref -d refs/heads/update-refs-symref-alias && > + test_might_fail git branch -D update-refs-symref update-refs-symref-base > + " && > + git checkout -B update-refs-symref-base primary && > + test_commit --no-tag update-refs-symref-base symref-base.t && > + git checkout -B update-refs-symref && > + test_commit --no-tag update-refs-symref-topic symref-topic.t && > + git checkout update-refs-symref-base && > + test_commit --no-tag update-refs-symref-newbase symref-newbase.t && > + git checkout update-refs-symref && > + git symbolic-ref refs/heads/update-refs-symref-alias refs/heads/update-refs-symref && I think we want to test a symref that does not match HEAD as well. Rather than adding a new test, can we instead add a couple of symref branches to the test "--update-refs updates refs correctly"? Thanks Phillip > + > + git rebase --update-refs update-refs-symref-base 2>err && > + > + test_cmp_rev update-refs-symref-base update-refs-symref^ && > + test_cmp_rev refs/heads/update-refs-symref refs/heads/update-refs-symref-alias && > + test_write_lines refs/heads/update-refs-symref >expect && > + git symbolic-ref refs/heads/update-refs-symref-alias >actual && > + test_cmp expect actual > +' > + > test_expect_success '--update-refs updates refs correctly' ' > git checkout -B update-refs no-conflict-branch && > git branch -f base HEAD~4 && ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 2/2] rebase: skip branch symref aliases 2026-05-28 5:41 [PATCH 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget 2026-05-28 5:42 ` [PATCH 1/2] t3404: add failing branch symref test Son Luong Ngoc via GitGitGadget @ 2026-05-28 5:42 ` Son Luong Ngoc via GitGitGadget 2026-05-28 7:08 ` Kristoffer Haugsbakk 2026-06-01 14:10 ` Phillip Wood 2026-05-28 20:42 ` [PATCH 0/2] rebase: handle --update-refs branch symrefs Junio C Hamano 2026-06-03 10:27 ` [PATCH v2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget 3 siblings, 2 replies; 13+ messages in thread From: Son Luong Ngoc via GitGitGadget @ 2026-05-28 5:42 UTC (permalink / raw) To: git; +Cc: Son Luong Ngoc, Son Luong Ngoc From: Son Luong Ngoc <sluongng@gmail.com> rebase --update-refs records local branch decorations before replaying commits. If a decoration is a symbolic branch such as refs/heads/main pointing at refs/heads/master, updating it later dereferences back to master and can fail because the normal rebase path already moved that branch. Resolve local branch symref decorations to their referents before queuing update-ref commands, and skip duplicates. This keeps branch aliases from scheduling a second update for the same underlying branch while still using the existing old-OID check for the single queued update. Signed-off-by: Son Luong Ngoc <sluongng@gmail.com> --- sequencer.c | 63 +++++++++++++++++++++++++++++------ t/t3404-rebase-interactive.sh | 2 +- 2 files changed, 53 insertions(+), 12 deletions(-) diff --git a/sequencer.c b/sequencer.c index 1ee4b2875b..4a83d1337c 100644 --- a/sequencer.c +++ b/sequencer.c @@ -6445,15 +6445,22 @@ static int add_decorations_to_list(const struct commit *commit, struct todo_add_branch_context *ctx) { const struct name_decoration *decoration = get_name_decoration(&commit->object); - const char *head_ref = refs_resolve_ref_unsafe(get_main_ref_store(the_repository), - "HEAD", + struct ref_store *refs = get_main_ref_store(the_repository); + const char *head_ref = refs_resolve_ref_unsafe(refs, "HEAD", RESOLVE_REF_READING, - NULL, - NULL); + NULL, NULL); + char *resolved_head_ref = refs_resolve_refdup(refs, "HEAD", + RESOLVE_REF_READING, + NULL, NULL); + struct strbuf update_ref = STRBUF_INIT; while (decoration) { struct todo_item *item; const char *path; + const char *ref = decoration->name; + const char *resolved_ref; + int is_symref = 0; + int flags = 0; size_t base_offset = ctx->buf->len; /* @@ -6461,12 +6468,44 @@ static int add_decorations_to_list(const struct commit *commit, * updated by the default rebase behavior. * Exclude it from the list of refs to update, * as well as any non-branch decorations. + * + * Resolve branch symrefs after checking for the current HEAD so + * that aliases do not schedule duplicate updates for their + * referents. + * * Non-branch decorations may be present if the pretty format * includes "%d", which would have loaded all refs * into the global decoration table. */ - if ((head_ref && !strcmp(head_ref, decoration->name)) || - (decoration->type != DECORATION_REF_LOCAL)) { + if (decoration->type != DECORATION_REF_LOCAL) { + decoration = decoration->next; + continue; + } + + if (head_ref && !strcmp(head_ref, ref)) { + decoration = decoration->next; + continue; + } + + strbuf_reset(&update_ref); + resolved_ref = refs_resolve_ref_unsafe(refs, ref, + RESOLVE_REF_READING | + RESOLVE_REF_NO_RECURSE, + NULL, &flags); + if ((flags & REF_ISSYMREF) && resolved_ref) { + if (!starts_with(resolved_ref, "refs/heads/")) { + decoration = decoration->next; + continue; + } + + strbuf_addstr(&update_ref, resolved_ref); + ref = update_ref.buf; + is_symref = 1; + } + + if ((is_symref && resolved_head_ref && + !strcmp(resolved_head_ref, ref)) || + string_list_has_string(&ctx->refs_to_oids, ref)) { decoration = decoration->next; continue; } @@ -6478,19 +6517,19 @@ static int add_decorations_to_list(const struct commit *commit, memset(item, 0, sizeof(*item)); /* If the branch is checked out, then leave a comment instead. */ - if ((path = branch_checked_out(decoration->name))) { + if ((path = branch_checked_out(ref))) { item->command = TODO_COMMENT; strbuf_commented_addf(ctx->buf, comment_line_str, "Ref %s checked out at '%s'\n", - decoration->name, path); + ref, path); } else { struct string_list_item *sti; item->command = TODO_UPDATE_REF; - strbuf_addf(ctx->buf, "%s\n", decoration->name); + strbuf_addf(ctx->buf, "%s\n", ref); sti = string_list_insert(&ctx->refs_to_oids, - decoration->name); - sti->util = init_update_ref_record(decoration->name); + ref); + sti->util = init_update_ref_record(ref); } item->offset_in_buf = base_offset; @@ -6501,6 +6540,8 @@ static int add_decorations_to_list(const struct commit *commit, decoration = decoration->next; } + strbuf_release(&update_ref); + free(resolved_head_ref); return 0; } diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index 42ba8cc313..29447c0fc3 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -1978,7 +1978,7 @@ test_expect_success '--update-refs ignores non-branch decorations' ' test_cmp expect actual ' -test_expect_failure '--update-refs skips branch symrefs to current branch' ' +test_expect_success '--update-refs skips branch symrefs to current branch' ' test_when_finished " test_might_fail git rebase --abort && git checkout primary && -- gitgitgadget ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 2/2] rebase: skip branch symref aliases 2026-05-28 5:42 ` [PATCH 2/2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget @ 2026-05-28 7:08 ` Kristoffer Haugsbakk 2026-06-01 14:10 ` Phillip Wood 1 sibling, 0 replies; 13+ messages in thread From: Kristoffer Haugsbakk @ 2026-05-28 7:08 UTC (permalink / raw) To: Koji Nakamaru, git; +Cc: Son Luong Ngoc On Thu, May 28, 2026, at 07:42, Son Luong Ngoc via GitGitGadget wrote: >[snip] > -test_expect_failure '--update-refs skips branch symrefs to current branch' ' > +test_expect_success '--update-refs skips branch symrefs to current branch' ' > test_when_finished " > test_might_fail git rebase --abort && > git checkout primary && This style of fixing a bug by: • Add failing test `test_expect_failure` in the first commit • Fix the bug in the next commit and flip to `test_expect_success` Is legitimate and makes it easier to verify that the test really exercises the regression. But in this project it is preferred to just do the bug fix + regression test in one patch. See https://lore.kernel.org/git/xmqqfrdk3aqy.fsf@gitster.g/ > -- > gitgitgadget ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/2] rebase: skip branch symref aliases 2026-05-28 5:42 ` [PATCH 2/2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget 2026-05-28 7:08 ` Kristoffer Haugsbakk @ 2026-06-01 14:10 ` Phillip Wood 1 sibling, 0 replies; 13+ messages in thread From: Phillip Wood @ 2026-06-01 14:10 UTC (permalink / raw) To: Son Luong Ngoc via GitGitGadget, git; +Cc: Son Luong Ngoc On 28/05/2026 06:42, Son Luong Ngoc via GitGitGadget wrote: > From: Son Luong Ngoc <sluongng@gmail.com> > > rebase --update-refs records local branch decorations before replaying > commits. If a decoration is a symbolic branch such as refs/heads/main > pointing at refs/heads/master, updating it later dereferences back to > master and can fail because the normal rebase path already moved that > branch. Good explanation, thanks for working on this. > Resolve local branch symref decorations to their referents before s/referents/targets/ ? > queuing update-ref commands, and skip duplicates. This keeps branch > aliases from scheduling a second update for the same underlying branch > while still using the existing old-OID check for the single queued > update. That's not quite what the patch does though - it only checks that the target of the symref differs from the target of HEAD. If a symref points to another branch we still try to update it when we should skip it. > Signed-off-by: Son Luong Ngoc <sluongng@gmail.com> > --- > sequencer.c | 63 +++++++++++++++++++++++++++++------ > t/t3404-rebase-interactive.sh | 2 +- > 2 files changed, 53 insertions(+), 12 deletions(-) > > diff --git a/sequencer.c b/sequencer.c > index 1ee4b2875b..4a83d1337c 100644 > --- a/sequencer.c > +++ b/sequencer.c > @@ -6445,15 +6445,22 @@ static int add_decorations_to_list(const struct commit *commit, > struct todo_add_branch_context *ctx) > { > const struct name_decoration *decoration = get_name_decoration(&commit->object); > - const char *head_ref = refs_resolve_ref_unsafe(get_main_ref_store(the_repository), > - "HEAD", > + struct ref_store *refs = get_main_ref_store(the_repository); > + const char *head_ref = refs_resolve_ref_unsafe(refs, "HEAD", > RESOLVE_REF_READING, > - NULL, > - NULL); > + NULL, NULL); > + char *resolved_head_ref = refs_resolve_refdup(refs, "HEAD", > + RESOLVE_REF_READING, > + NULL, NULL); We need to use refs_resolve_refdup() instead of refs_resolve_ref_unsafe() so that the return value is not overwritten by the later calls to refs_resolve_ref_unsafe() that are added below. But that is the only change that is needed - we do not need to add a new variable, we just replace refs_resolve_ref_unsafe() with refs_resole_refdup() and free "head_ref" before we return. > + struct strbuf update_ref = STRBUF_INIT; > > while (decoration) { > struct todo_item *item; > const char *path; > + const char *ref = decoration->name; > + const char *resolved_ref; > + int is_symref = 0; > + int flags = 0; > size_t base_offset = ctx->buf->len; > > /* > @@ -6461,12 +6468,44 @@ static int add_decorations_to_list(const struct commit *commit, > * updated by the default rebase behavior. > * Exclude it from the list of refs to update, > * as well as any non-branch decorations. > + * > + * Resolve branch symrefs after checking for the current HEAD so > + * that aliases do not schedule duplicate updates for their > + * referents. > + * > * Non-branch decorations may be present if the pretty format > * includes "%d", which would have loaded all refs > * into the global decoration table. > */ > - if ((head_ref && !strcmp(head_ref, decoration->name)) || > - (decoration->type != DECORATION_REF_LOCAL)) { > + if (decoration->type != DECORATION_REF_LOCAL) { > + decoration = decoration->next; > + continue; > + } > + > + if (head_ref && !strcmp(head_ref, ref)) { > + decoration = decoration->next; > + continue; > + } This is just rewriting the existing if statement which has nothing to do with the stated aim of this patch - lets leave it as it was. > + > + strbuf_reset(&update_ref); > + resolved_ref = refs_resolve_ref_unsafe(refs, ref, > + RESOLVE_REF_READING | > + RESOLVE_REF_NO_RECURSE, Why are we passing RESOLVE_REF_NO_RECURSE here? I'd have thought we want to resolve the whole chain of symbolic refs to find out which ref is actually going to be updated. > + NULL, &flags); > + if ((flags & REF_ISSYMREF) && resolved_ref) { I think it is generally safer to check the return value before using any of the "out" parameters from a function call. In this case the function unconditionally clears flags at the beginning so it is safe. > + if (!starts_with(resolved_ref, "refs/heads/")) { > + decoration = decoration->next; > + continue; This is the opposite of what I was expecting - if the decoration is a symref that resolves to a branch then that branch will also be in the list of decorations and so will be updated. If the decoration is a symref that resolves outside "refs/heads/" then we want to add the decoration to the list of refs to update to keep the current behavior. If we do that then we skip all symbolic refs that point to another branch, instead of just skipping those that match HEAD and we don't need any of the changes below here. Thanks Phillip > + } > + > + strbuf_addstr(&update_ref, resolved_ref); > + ref = update_ref.buf; > + is_symref = 1; > + } > + > + if ((is_symref && resolved_head_ref && > + !strcmp(resolved_head_ref, ref)) || > + string_list_has_string(&ctx->refs_to_oids, ref)) { > decoration = decoration->next; > continue; > } > @@ -6478,19 +6517,19 @@ static int add_decorations_to_list(const struct commit *commit, > memset(item, 0, sizeof(*item)); > > /* If the branch is checked out, then leave a comment instead. */ > - if ((path = branch_checked_out(decoration->name))) { > + if ((path = branch_checked_out(ref))) { > item->command = TODO_COMMENT; > strbuf_commented_addf(ctx->buf, comment_line_str, > "Ref %s checked out at '%s'\n", > - decoration->name, path); > + ref, path); > } else { > struct string_list_item *sti; > item->command = TODO_UPDATE_REF; > - strbuf_addf(ctx->buf, "%s\n", decoration->name); > + strbuf_addf(ctx->buf, "%s\n", ref); > > sti = string_list_insert(&ctx->refs_to_oids, > - decoration->name); > - sti->util = init_update_ref_record(decoration->name); > + ref); > + sti->util = init_update_ref_record(ref); > } > > item->offset_in_buf = base_offset; > @@ -6501,6 +6540,8 @@ static int add_decorations_to_list(const struct commit *commit, > decoration = decoration->next; > } > > + strbuf_release(&update_ref); > + free(resolved_head_ref); > return 0; > } > > diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh > index 42ba8cc313..29447c0fc3 100755 > --- a/t/t3404-rebase-interactive.sh > +++ b/t/t3404-rebase-interactive.sh > @@ -1978,7 +1978,7 @@ test_expect_success '--update-refs ignores non-branch decorations' ' > test_cmp expect actual > ' > > -test_expect_failure '--update-refs skips branch symrefs to current branch' ' > +test_expect_success '--update-refs skips branch symrefs to current branch' ' > test_when_finished " > test_might_fail git rebase --abort && > git checkout primary && ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 0/2] rebase: handle --update-refs branch symrefs 2026-05-28 5:41 [PATCH 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget 2026-05-28 5:42 ` [PATCH 1/2] t3404: add failing branch symref test Son Luong Ngoc via GitGitGadget 2026-05-28 5:42 ` [PATCH 2/2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget @ 2026-05-28 20:42 ` Junio C Hamano 2026-06-03 10:27 ` [PATCH v2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget 3 siblings, 0 replies; 13+ messages in thread From: Junio C Hamano @ 2026-05-28 20:42 UTC (permalink / raw) To: Son Luong Ngoc via GitGitGadget; +Cc: git, Son Luong Ngoc "Son Luong Ngoc via GitGitGadget" <gitgitgadget@gmail.com> writes: > git rebase --update-refs can fail after the normal rebase path has > successfully updated the current branch when another local branch is a > symbolic ref to it. > > One practical way to arrive at that setup is a default branch rename from > master to main. While the migration is in progress, a user may keep > refs/heads/main as a symbolic ref to refs/heads/master so that both names > continue to work locally. > > If pull.rebase is enabled, a plain git pull can then finish the rebase of > master and still fail while trying to update the main alias. The reported > failure looked like this, with line breaks adjusted for the cover letter: > > Successfully rebased and updated refs/heads/master. > error: update_ref failed for ref 'refs/heads/main': > cannot lock ref 'refs/heads/main': > is at fc2c7bd5f17abec7861ef759edcd33a1e16662a1 > but expected 531cabdfb49098d6ffa502ed4bf91d1b35edfcfa > Updated the following refs with --update-refs: > Failed to update the following refs with --update-refs: > refs/heads/main I vaguely recall we saw a different topic that dealt with a situation somewhat similar to this topic (I think it was about 'describe' giving a name that is not a branch). How would this mesh with what the other topic wanted to do? Instead of filtering out non-branch names (which the other topic did), here we want to filter out names that are not concrete branches but pointers to something else. Would it mean that the logic here is more broad (i.e., both wants to filter out names of non-branches), making the other topic unnecessary? ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v2] rebase: skip branch symref aliases 2026-05-28 5:41 [PATCH 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget ` (2 preceding siblings ...) 2026-05-28 20:42 ` [PATCH 0/2] rebase: handle --update-refs branch symrefs Junio C Hamano @ 2026-06-03 10:27 ` Son Luong Ngoc via GitGitGadget 2026-06-04 15:37 ` Phillip Wood 2026-07-22 8:15 ` [PATCH v3 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget 3 siblings, 2 replies; 13+ messages in thread From: Son Luong Ngoc via GitGitGadget @ 2026-06-03 10:27 UTC (permalink / raw) To: git; +Cc: Kristoffer Haugsbakk, Phillip Wood, Son Luong Ngoc, Son Luong Ngoc From: Son Luong Ngoc <sluongng@gmail.com> git rebase --update-refs can fail after the normal rebase path has updated the current branch when another local branch is a symref to it. This can happen during a default-branch rename where refs/heads/main points at refs/heads/master while users migrate. The sequencer queues update-ref commands from local branch decorations. Commit 106b6885c7 (rebase: ignore non-branch update-refs) filters out decorations that are not local branches, such as HEAD and tags. A branch symref is different: it is still a local branch decoration, but if it resolves to another branch then that target branch is itself present in the decoration list and will be updated as a concrete branch. Skip branch decorations whose symrefs resolve to refs/heads/*, because those targets are already represented by concrete branch decorations. This prevents aliases from scheduling a second update for the same branch. Keep symrefs to non-branch targets on the existing path. Preserve the existing checked-out branch handling before applying these skips. Such refs still need a todo-list comment instead of an update-ref command, even when the checked-out ref is the branch being rebased or a branch symref alias. Use a copy of the resolved HEAD ref so later ref resolution does not overwrite it. Signed-off-by: Son Luong Ngoc <sluongng@gmail.com> --- rebase: handle --update-refs branch symrefs Changes since v1: * Squashed the regression test and fix into a single patch. * Reworked the implementation per Phillip's review: skip local branch symrefs that are not checked out when their targets resolve to refs/heads/*, while preserving the existing behavior for symrefs to non-branch targets. * Preserved checked-out branch comments before applying the new symref skip, so worktrees still get the existing todo-list warning instead of an update-ref command. * Folded the symref coverage into the existing "--update-refs updates refs correctly" test, covering both an alias of HEAD and an alias of another branch. * Kept the relationship to 106b6885c7 in the commit message: non-local decorations are already filtered, and this patch handles the remaining local branch decorations that are symref aliases. Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-2126%2Fsluongng%2Fsl%2Frebase-update-refs-symrefs-v2 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-2126/sluongng/sl/rebase-update-refs-symrefs-v2 Pull-Request: https://github.com/gitgitgadget/git/pull/2126 Range-diff vs v1: 1: a550923440 < -: ---------- t3404: add failing branch symref test 2: 0ab0a71744 ! 1: 68f698225c rebase: skip branch symref aliases @@ Metadata ## Commit message ## rebase: skip branch symref aliases - rebase --update-refs records local branch decorations before replaying - commits. If a decoration is a symbolic branch such as refs/heads/main - pointing at refs/heads/master, updating it later dereferences back to - master and can fail because the normal rebase path already moved that - branch. + git rebase --update-refs can fail after the normal rebase path has + updated the current branch when another local branch is a symref to it. + This can happen during a default-branch rename where refs/heads/main + points at refs/heads/master while users migrate. - Resolve local branch symref decorations to their referents before - queuing update-ref commands, and skip duplicates. This keeps branch - aliases from scheduling a second update for the same underlying branch - while still using the existing old-OID check for the single queued - update. + The sequencer queues update-ref commands from local branch decorations. + Commit 106b6885c7 (rebase: ignore non-branch update-refs) filters out + decorations that are not local branches, such as HEAD and tags. A branch + symref is different: it is still a local branch decoration, but if it + resolves to another branch then that target branch is itself present in + the decoration list and will be updated as a concrete branch. + + Skip branch decorations whose symrefs resolve to refs/heads/*, because + those targets are already represented by concrete branch decorations. + This prevents aliases from scheduling a second update for the same + branch. Keep symrefs to non-branch targets on the existing path. + + Preserve the existing checked-out branch handling before applying these + skips. Such refs still need a todo-list comment instead of an update-ref + command, even when the checked-out ref is the branch being rebased or a + branch symref alias. Use a copy of the resolved HEAD ref so later ref + resolution does not overwrite it. Signed-off-by: Son Luong Ngoc <sluongng@gmail.com> @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, const struct name_decoration *decoration = get_name_decoration(&commit->object); - const char *head_ref = refs_resolve_ref_unsafe(get_main_ref_store(the_repository), - "HEAD", -+ struct ref_store *refs = get_main_ref_store(the_repository); -+ const char *head_ref = refs_resolve_ref_unsafe(refs, "HEAD", - RESOLVE_REF_READING, +- RESOLVE_REF_READING, - NULL, - NULL); -+ NULL, NULL); -+ char *resolved_head_ref = refs_resolve_refdup(refs, "HEAD", -+ RESOLVE_REF_READING, -+ NULL, NULL); -+ struct strbuf update_ref = STRBUF_INIT; ++ struct ref_store *refs = get_main_ref_store(the_repository); ++ char *head_ref = refs_resolve_refdup(refs, "HEAD", ++ RESOLVE_REF_READING, ++ NULL, NULL); while (decoration) { struct todo_item *item; const char *path; -+ const char *ref = decoration->name; + const char *resolved_ref; -+ int is_symref = 0; + int flags = 0; size_t base_offset = ctx->buf->len; /* -@@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, - * updated by the default rebase behavior. - * Exclude it from the list of refs to update, - * as well as any non-branch decorations. -+ * -+ * Resolve branch symrefs after checking for the current HEAD so -+ * that aliases do not schedule duplicate updates for their -+ * referents. -+ * +- * If the branch is the current HEAD, then it will be +- * updated by the default rebase behavior. +- * Exclude it from the list of refs to update, +- * as well as any non-branch decorations. * Non-branch decorations may be present if the pretty format * includes "%d", which would have loaded all refs * into the global decoration table. @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, + continue; + } + -+ if (head_ref && !strcmp(head_ref, ref)) { ++ path = branch_checked_out(decoration->name); ++ ++ /* ++ * If the branch is the current HEAD, then it will be ++ * updated by the default rebase behavior. Exclude it from ++ * the list of refs to update, unless it is checked out and ++ * needs a comment in the todo list. ++ */ ++ if (!path && head_ref && !strcmp(head_ref, decoration->name)) { + decoration = decoration->next; + continue; + } + -+ strbuf_reset(&update_ref); -+ resolved_ref = refs_resolve_ref_unsafe(refs, ref, -+ RESOLVE_REF_READING | -+ RESOLVE_REF_NO_RECURSE, ++ resolved_ref = refs_resolve_ref_unsafe(refs, decoration->name, ++ RESOLVE_REF_READING, + NULL, &flags); -+ if ((flags & REF_ISSYMREF) && resolved_ref) { -+ if (!starts_with(resolved_ref, "refs/heads/")) { -+ decoration = decoration->next; -+ continue; -+ } -+ -+ strbuf_addstr(&update_ref, resolved_ref); -+ ref = update_ref.buf; -+ is_symref = 1; -+ } -+ -+ if ((is_symref && resolved_head_ref && -+ !strcmp(resolved_head_ref, ref)) || -+ string_list_has_string(&ctx->refs_to_oids, ref)) { ++ if (!path && resolved_ref && (flags & REF_ISSYMREF) && ++ starts_with(resolved_ref, "refs/heads/")) { decoration = decoration->next; continue; } @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, /* If the branch is checked out, then leave a comment instead. */ - if ((path = branch_checked_out(decoration->name))) { -+ if ((path = branch_checked_out(ref))) { ++ if (path) { item->command = TODO_COMMENT; strbuf_commented_addf(ctx->buf, comment_line_str, "Ref %s checked out at '%s'\n", -- decoration->name, path); -+ ref, path); - } else { - struct string_list_item *sti; - item->command = TODO_UPDATE_REF; -- strbuf_addf(ctx->buf, "%s\n", decoration->name); -+ strbuf_addf(ctx->buf, "%s\n", ref); - - sti = string_list_insert(&ctx->refs_to_oids, -- decoration->name); -- sti->util = init_update_ref_record(decoration->name); -+ ref); -+ sti->util = init_update_ref_record(ref); - } - - item->offset_in_buf = base_offset; @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, decoration = decoration->next; } -+ strbuf_release(&update_ref); -+ free(resolved_head_ref); ++ free(head_ref); return 0; } ## t/t3404-rebase-interactive.sh ## @@ t/t3404-rebase-interactive.sh: test_expect_success '--update-refs ignores non-branch decorations' ' - test_cmp expect actual ' --test_expect_failure '--update-refs skips branch symrefs to current branch' ' -+test_expect_success '--update-refs skips branch symrefs to current branch' ' - test_when_finished " - test_might_fail git rebase --abort && - git checkout primary && + test_expect_success '--update-refs updates refs correctly' ' ++ test_when_finished " ++ test_might_fail git symbolic-ref -d refs/heads/no-conflict-branch-alias && ++ test_might_fail git symbolic-ref -d refs/heads/second-alias ++ " && + git checkout -B update-refs no-conflict-branch && + git branch -f base HEAD~4 && + git branch -f first HEAD~3 && + git branch -f second HEAD~3 && + git branch -f third HEAD~1 && ++ git symbolic-ref refs/heads/no-conflict-branch-alias \ ++ refs/heads/no-conflict-branch && ++ git symbolic-ref refs/heads/second-alias refs/heads/second && + test_commit extra2 fileX && + git commit --amend --fixup=L && + +@@ t/t3404-rebase-interactive.sh: test_expect_success '--update-refs updates refs correctly' ' + + test_cmp_rev HEAD~3 refs/heads/first && + test_cmp_rev HEAD~3 refs/heads/second && ++ test_cmp_rev HEAD~3 refs/heads/second-alias && + test_cmp_rev HEAD~1 refs/heads/third && + test_cmp_rev HEAD refs/heads/no-conflict-branch && ++ test_cmp_rev HEAD refs/heads/no-conflict-branch-alias && ++ test_write_lines refs/heads/no-conflict-branch >expect && ++ git symbolic-ref refs/heads/no-conflict-branch-alias >actual && ++ test_cmp expect actual && ++ test_write_lines refs/heads/second >expect && ++ git symbolic-ref refs/heads/second-alias >actual && ++ test_cmp expect actual && + + q_to_tab >expect <<-\EOF && + Successfully rebased and updated refs/heads/update-refs. sequencer.c | 43 +++++++++++++++++++++++++---------- t/t3404-rebase-interactive.sh | 15 ++++++++++++ 2 files changed, 46 insertions(+), 12 deletions(-) diff --git a/sequencer.c b/sequencer.c index 1ee4b2875b..6ab8b47108 100644 --- a/sequencer.c +++ b/sequencer.c @@ -6445,28 +6445,46 @@ static int add_decorations_to_list(const struct commit *commit, struct todo_add_branch_context *ctx) { const struct name_decoration *decoration = get_name_decoration(&commit->object); - const char *head_ref = refs_resolve_ref_unsafe(get_main_ref_store(the_repository), - "HEAD", - RESOLVE_REF_READING, - NULL, - NULL); + struct ref_store *refs = get_main_ref_store(the_repository); + char *head_ref = refs_resolve_refdup(refs, "HEAD", + RESOLVE_REF_READING, + NULL, NULL); while (decoration) { struct todo_item *item; const char *path; + const char *resolved_ref; + int flags = 0; size_t base_offset = ctx->buf->len; /* - * If the branch is the current HEAD, then it will be - * updated by the default rebase behavior. - * Exclude it from the list of refs to update, - * as well as any non-branch decorations. * Non-branch decorations may be present if the pretty format * includes "%d", which would have loaded all refs * into the global decoration table. */ - if ((head_ref && !strcmp(head_ref, decoration->name)) || - (decoration->type != DECORATION_REF_LOCAL)) { + if (decoration->type != DECORATION_REF_LOCAL) { + decoration = decoration->next; + continue; + } + + path = branch_checked_out(decoration->name); + + /* + * If the branch is the current HEAD, then it will be + * updated by the default rebase behavior. Exclude it from + * the list of refs to update, unless it is checked out and + * needs a comment in the todo list. + */ + if (!path && head_ref && !strcmp(head_ref, decoration->name)) { + decoration = decoration->next; + continue; + } + + resolved_ref = refs_resolve_ref_unsafe(refs, decoration->name, + RESOLVE_REF_READING, + NULL, &flags); + if (!path && resolved_ref && (flags & REF_ISSYMREF) && + starts_with(resolved_ref, "refs/heads/")) { decoration = decoration->next; continue; } @@ -6478,7 +6496,7 @@ static int add_decorations_to_list(const struct commit *commit, memset(item, 0, sizeof(*item)); /* If the branch is checked out, then leave a comment instead. */ - if ((path = branch_checked_out(decoration->name))) { + if (path) { item->command = TODO_COMMENT; strbuf_commented_addf(ctx->buf, comment_line_str, "Ref %s checked out at '%s'\n", @@ -6501,6 +6519,7 @@ static int add_decorations_to_list(const struct commit *commit, decoration = decoration->next; } + free(head_ref); return 0; } diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index 58b3bb0c27..bc0b6a31f7 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -1979,11 +1979,18 @@ test_expect_success '--update-refs ignores non-branch decorations' ' ' test_expect_success '--update-refs updates refs correctly' ' + test_when_finished " + test_might_fail git symbolic-ref -d refs/heads/no-conflict-branch-alias && + test_might_fail git symbolic-ref -d refs/heads/second-alias + " && git checkout -B update-refs no-conflict-branch && git branch -f base HEAD~4 && git branch -f first HEAD~3 && git branch -f second HEAD~3 && git branch -f third HEAD~1 && + git symbolic-ref refs/heads/no-conflict-branch-alias \ + refs/heads/no-conflict-branch && + git symbolic-ref refs/heads/second-alias refs/heads/second && test_commit extra2 fileX && git commit --amend --fixup=L && @@ -1991,8 +1998,16 @@ test_expect_success '--update-refs updates refs correctly' ' test_cmp_rev HEAD~3 refs/heads/first && test_cmp_rev HEAD~3 refs/heads/second && + test_cmp_rev HEAD~3 refs/heads/second-alias && test_cmp_rev HEAD~1 refs/heads/third && test_cmp_rev HEAD refs/heads/no-conflict-branch && + test_cmp_rev HEAD refs/heads/no-conflict-branch-alias && + test_write_lines refs/heads/no-conflict-branch >expect && + git symbolic-ref refs/heads/no-conflict-branch-alias >actual && + test_cmp expect actual && + test_write_lines refs/heads/second >expect && + git symbolic-ref refs/heads/second-alias >actual && + test_cmp expect actual && q_to_tab >expect <<-\EOF && Successfully rebased and updated refs/heads/update-refs. base-commit: c69baaf57ba26cf117c2b6793802877f19738b0d -- gitgitgadget ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v2] rebase: skip branch symref aliases 2026-06-03 10:27 ` [PATCH v2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget @ 2026-06-04 15:37 ` Phillip Wood 2026-07-22 8:16 ` Son Luong Ngoc 2026-07-22 8:15 ` [PATCH v3 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget 1 sibling, 1 reply; 13+ messages in thread From: Phillip Wood @ 2026-06-04 15:37 UTC (permalink / raw) To: Son Luong Ngoc via GitGitGadget, git; +Cc: Kristoffer Haugsbakk, Son Luong Ngoc On 03/06/2026 11:27, Son Luong Ngoc via GitGitGadget wrote: > From: Son Luong Ngoc <sluongng@gmail.com> > > git rebase --update-refs can fail after the normal rebase path has > updated the current branch when another local branch is a symref to it. > This can happen during a default-branch rename where refs/heads/main > points at refs/heads/master while users migrate. > > The sequencer queues update-ref commands from local branch decorations. > Commit 106b6885c7 (rebase: ignore non-branch update-refs) filters out > decorations that are not local branches, such as HEAD and tags. A branch > symref is different: it is still a local branch decoration, but if it > resolves to another branch then that target branch is itself present in > the decoration list and will be updated as a concrete branch. > > Skip branch decorations whose symrefs resolve to refs/heads/*, because > those targets are already represented by concrete branch decorations. > This prevents aliases from scheduling a second update for the same > branch. Keep symrefs to non-branch targets on the existing path. Makes sense > Preserve the existing checked-out branch handling before applying these > skips. Such refs still need a todo-list comment instead of an update-ref > command, even when the checked-out ref is the branch being rebased or a > branch symref alias. Use a copy of the resolved HEAD ref so later ref > resolution does not overwrite it. I don't quite understand this. A symref that points to another branch should always be skipped. When we look up which branches are checked out (see worktree.c:add_head_info()) we use refs_resolve_ref_unsafe(get_worktree_ref_store(wt), "HEAD", 0, &wt->head_oid, &flags); so it will never report a symref as being checked out - it always resolves any symrefs first. If we have a symref pointing somewhere outside of "refs/heads" then we need to check whether the target is checked out, not the symref itself. I'm not sure how likely that is to happen in practice. > diff --git a/sequencer.c b/sequencer.c > index 1ee4b2875b..6ab8b47108 100644 > --- a/sequencer.c > +++ b/sequencer.c > @@ -6445,28 +6445,46 @@ static int add_decorations_to_list(const struct commit *commit, > struct todo_add_branch_context *ctx) > { > const struct name_decoration *decoration = get_name_decoration(&commit->object); > - const char *head_ref = refs_resolve_ref_unsafe(get_main_ref_store(the_repository), > - "HEAD", > - RESOLVE_REF_READING, > - NULL, > - NULL); > + struct ref_store *refs = get_main_ref_store(the_repository); > + char *head_ref = refs_resolve_refdup(refs, "HEAD", > + RESOLVE_REF_READING, > + NULL, NULL); This part and the test look good now > while (decoration) { > struct todo_item *item; > const char *path; > + const char *resolved_ref; > + int flags = 0; > size_t base_offset = ctx->buf->len; > > /* > - * If the branch is the current HEAD, then it will be > - * updated by the default rebase behavior. > - * Exclude it from the list of refs to update, > - * as well as any non-branch decorations. > * Non-branch decorations may be present if the pretty format > * includes "%d", which would have loaded all refs > * into the global decoration table. > */ > - if ((head_ref && !strcmp(head_ref, decoration->name)) || > - (decoration->type != DECORATION_REF_LOCAL)) { > + if (decoration->type != DECORATION_REF_LOCAL) { > + decoration = decoration->next; > + continue; > + } If a decoration matches the current branch why don't we just skip it like we used to? (As an aside the existing code in wrong because if the user runs "git rebase --update-refs <upstream> <branch>" HEAD does not point to "<branch>" but lets not worry about that now) > + path = branch_checked_out(decoration->name); As I said above if the symref target is anther branch we should skip it and if the target is not a branch then we need to check if the target is checked out so we need to resolve the ref before calling branch_checked_out(). Thanks Phillip ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2] rebase: skip branch symref aliases 2026-06-04 15:37 ` Phillip Wood @ 2026-07-22 8:16 ` Son Luong Ngoc 0 siblings, 0 replies; 13+ messages in thread From: Son Luong Ngoc @ 2026-07-22 8:16 UTC (permalink / raw) To: git; +Cc: phillip.wood123 On 04/06/2026 16:46, Phillip Wood wrote: > A symref that points to another branch should always be skipped. When we > look up which branches are checked out (see worktree.c:add_head_info()) we > use > > refs_resolve_ref_unsafe(get_worktree_ref_store(wt), > "HEAD", > 0, > &wt->head_oid, &flags); > > so it will never report a symref as being checked out - it always resolves > any symrefs first. Yes, this is the right distinction. Patch 1 now resolves each local branch decoration before deciding whether to queue it. If the target is under refs/heads/, the alias is skipped unconditionally and the concrete branch decoration remains the only update that is queued. > If we have a symref pointing somewhere outside of "refs/heads" then we > need to check whether the target is checked out, not the symref itself. > I'm not sure how likely that is to happen in practice. Patch 2 handles that case separately. It checks both the literal alias and its resolved target ref against the checked-out reservations. I also added a test with a non-branch target checked out in another worktree. > If a decoration matches the current branch why don't we just skip it like > we used to? (As an aside the existing code in wrong because if the user > runs "git rebase --update-refs <upstream> <branch>" HEAD does not point to > "<branch>" but lets not worry about that now) Agreed. Patch 1 now skips the current branch before checked-out handling, as the old code did. The contrary expectation in t3400 came from head_ref pointing into a buffer that was reused while resolving another decoration. That could make the current-branch comparison fail. head_ref is now an owned copy. The test expects the current branch to be omitted from the todo list. While adding the non-branch coverage, I found that two aliases to the same target ref could queue the same update twice and make the second compare-and-swap fail. Patch 2 deduplicates those updates by target ref. It also records resolved target refs from other worktrees' in-progress update-refs state so that a different alias honors the same reservation. I split the reroll into these two patches so that the branch-alias fix and the non-branch safeguards can be reviewed independently. Thanks for the review, and sorry for the slow response. Thanks, Son On Thu, 4 Jun 2026 16:37:39 +0100, Phillip Wood <phillip.wood123@gmail.com> wrote: > On 03/06/2026 11:27, Son Luong Ngoc via GitGitGadget wrote: > > From: Son Luong Ngoc <sluongng@gmail.com> > > > > git rebase --update-refs can fail after the normal rebase path has > > updated the current branch when another local branch is a symref to it. > > This can happen during a default-branch rename where refs/heads/main > > points at refs/heads/master while users migrate. > > > > The sequencer queues update-ref commands from local branch decorations. > > Commit 106b6885c7 (rebase: ignore non-branch update-refs) filters out > > decorations that are not local branches, such as HEAD and tags. A branch > > symref is different: it is still a local branch decoration, but if it > > resolves to another branch then that target branch is itself present in > > the decoration list and will be updated as a concrete branch. > > > > Skip branch decorations whose symrefs resolve to refs/heads/*, because > > those targets are already represented by concrete branch decorations. > > This prevents aliases from scheduling a second update for the same > > branch. Keep symrefs to non-branch targets on the existing path. > > Makes sense > > > Preserve the existing checked-out branch handling before applying these > > skips. Such refs still need a todo-list comment instead of an update-ref > > command, even when the checked-out ref is the branch being rebased or a > > branch symref alias. Use a copy of the resolved HEAD ref so later ref > > resolution does not overwrite it. > > I don't quite understand this. A symref that points to another branch > should always be skipped. When we look up which branches are checked out > (see worktree.c:add_head_info()) we use > > refs_resolve_ref_unsafe(get_worktree_ref_store(wt), > "HEAD", > 0, > &wt->head_oid, &flags); > > so it will never report a symref as being checked out - it always > resolves any symrefs first. > > If we have a symref pointing somewhere outside of "refs/heads" then we > need to check whether the target is checked out, not the symref itself. > I'm not sure how likely that is to happen in practice. > > > diff --git a/sequencer.c b/sequencer.c > > index 1ee4b2875b..6ab8b47108 100644 > > --- a/sequencer.c > > +++ b/sequencer.c > > @@ -6445,28 +6445,46 @@ static int add_decorations_to_list(const struct commit *commit, > > struct todo_add_branch_context *ctx) > > { > > const struct name_decoration *decoration = get_name_decoration(&commit->object); > > - const char *head_ref = refs_resolve_ref_unsafe(get_main_ref_store(the_repository), > > - "HEAD", > > - RESOLVE_REF_READING, > > - NULL, > > - NULL); > > + struct ref_store *refs = get_main_ref_store(the_repository); > > + char *head_ref = refs_resolve_refdup(refs, "HEAD", > > + RESOLVE_REF_READING, > > + NULL, NULL); > > This part and the test look good now > > while (decoration) { > > struct todo_item *item; > > const char *path; > > + const char *resolved_ref; > > + int flags = 0; > > size_t base_offset = ctx->buf->len; > > > > /* > > - * If the branch is the current HEAD, then it will be > > - * updated by the default rebase behavior. > > - * Exclude it from the list of refs to update, > > - * as well as any non-branch decorations. > > * Non-branch decorations may be present if the pretty format > > * includes "%d", which would have loaded all refs > > * into the global decoration table. > > */ > > - if ((head_ref && !strcmp(head_ref, decoration->name)) || > > - (decoration->type != DECORATION_REF_LOCAL)) { > > + if (decoration->type != DECORATION_REF_LOCAL) { > > + decoration = decoration->next; > > + continue; > > + } > > If a decoration matches the current branch why don't we just skip it > like we used to? (As an aside the existing code in wrong because if the > user runs "git rebase --update-refs <upstream> <branch>" HEAD does not > point to "<branch>" but lets not worry about that now) > > > + path = branch_checked_out(decoration->name); > > As I said above if the symref target is anther branch we should skip it > and if the target is not a branch then we need to check if the target is > checked out so we need to resolve the ref before calling > branch_checked_out(). > > Thanks > > Phillip ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v3 0/2] rebase: handle --update-refs branch symrefs 2026-06-03 10:27 ` [PATCH v2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget 2026-06-04 15:37 ` Phillip Wood @ 2026-07-22 8:15 ` Son Luong Ngoc via GitGitGadget 2026-07-22 8:15 ` [PATCH v3 1/2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget 2026-07-22 8:15 ` [PATCH v3 2/2] rebase: guard non-branch symref targets Son Luong Ngoc via GitGitGadget 1 sibling, 2 replies; 13+ messages in thread From: Son Luong Ngoc via GitGitGadget @ 2026-07-22 8:15 UTC (permalink / raw) To: git; +Cc: Kristoffer Haugsbakk, Phillip Wood, Son Luong Ngoc git rebase --update-refs can finish rewriting the current branch and then fail while updating a local branch that is a symbolic ref. This can happen during a default-branch rename where refs/heads/main points at refs/heads/master while users migrate. The failure leaves refs partially updated even though the main rebase has succeeded. Resolve local branch decorations before adding update-ref commands. The first patch skips aliases whose targets are other branches and preserves the existing handling of the current branch. The second patch keeps aliases to non-branch refs supported while preventing duplicate and cross-worktree updates to their resolved targets. Changes since v2: * Skip branch-to-branch symrefs before checked-out handling. * Restore the unconditional current-branch skip and keep an owned copy of the resolved HEAD name. * Check both a non-branch symref alias and its resolved target against checked-out reservations. * Deduplicate aliases that share a non-branch target. * Reserve resolved targets from other worktrees' in-progress update-refs state. * Split the branch-alias fix and non-branch safeguards into separate patches. * Rebase onto 48bbf81c29 (The 5th batch). The focused t3400 and t3404 test suites pass with both the files and reftable backends. Son Luong Ngoc (2): rebase: skip branch symref aliases rebase: guard non-branch symref targets branch.c | 15 ++++++ sequencer.c | 63 ++++++++++++++++++++----- t/t3400-rebase.sh | 2 +- t/t3404-rebase-interactive.sh | 88 +++++++++++++++++++++++++++++++++++ 4 files changed, 155 insertions(+), 13 deletions(-) base-commit: 48bbf81c29ca9a4479ec7850fe206518682cdb2f Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-2126%2Fsluongng%2Fsl%2Frebase-update-refs-symrefs-v3 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-2126/sluongng/sl/rebase-update-refs-symrefs-v3 Pull-Request: https://github.com/gitgitgadget/git/pull/2126 Range-diff vs v2: 1: 68f698225c ! 1: b9a01e9141 rebase: skip branch symref aliases @@ Metadata ## Commit message ## rebase: skip branch symref aliases - git rebase --update-refs can fail after the normal rebase path has - updated the current branch when another local branch is a symref to it. - This can happen during a default-branch rename where refs/heads/main - points at refs/heads/master while users migrate. + git rebase --update-refs can finish rewriting the current branch and + then fail while updating a local branch that is a symbolic ref. This can + happen during a default-branch rename where refs/heads/main points at + refs/heads/master while users migrate. - The sequencer queues update-ref commands from local branch decorations. - Commit 106b6885c7 (rebase: ignore non-branch update-refs) filters out - decorations that are not local branches, such as HEAD and tags. A branch - symref is different: it is still a local branch decoration, but if it - resolves to another branch then that target branch is itself present in - the decoration list and will be updated as a concrete branch. + The problem is a partially applied ref update: the main rebase has + already succeeded when the later ref update fails. - Skip branch decorations whose symrefs resolve to refs/heads/*, because - those targets are already represented by concrete branch decorations. - This prevents aliases from scheduling a second update for the same - branch. Keep symrefs to non-branch targets on the existing path. + The sequencer queues updates from local branch decorations. Commit + 106b6885c7 (rebase: ignore non-branch update-refs) filters out + decorations such as HEAD and tags. A branch symref is still a local + branch decoration, but refs_update_ref() dereferences it, so an alias to + another branch duplicates the concrete branch update. - Preserve the existing checked-out branch handling before applying these - skips. Such refs still need a todo-list comment instead of an update-ref - command, even when the checked-out ref is the branch being rebased or a - branch symref alias. Use a copy of the resolved HEAD ref so later ref - resolution does not overwrite it. + Resolve local branch decorations before queuing them. Skip symrefs whose + targets are under refs/heads/ so that only the concrete branch update is + queued. Keep an owned copy of the resolved HEAD and skip the current + branch before checked-out handling so later ref resolution cannot change + the comparison. + + This prevents a successful rebase from being followed by a failed, + partially applied ref update while preserving each alias as a symref. Signed-off-by: Son Luong Ngoc <sluongng@gmail.com> @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, while (decoration) { struct todo_item *item; const char *path; -+ const char *resolved_ref; ++ char *resolved_ref; + int flags = 0; size_t base_offset = ctx->buf->len; @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, + continue; + } + -+ path = branch_checked_out(decoration->name); -+ -+ /* -+ * If the branch is the current HEAD, then it will be -+ * updated by the default rebase behavior. Exclude it from -+ * the list of refs to update, unless it is checked out and -+ * needs a comment in the todo list. -+ */ -+ if (!path && head_ref && !strcmp(head_ref, decoration->name)) { ++ resolved_ref = refs_resolve_refdup(refs, decoration->name, ++ RESOLVE_REF_READING, ++ NULL, &flags); ++ if (resolved_ref && (flags & REF_ISSYMREF) && ++ starts_with(resolved_ref, "refs/heads/")) { ++ free(resolved_ref); + decoration = decoration->next; + continue; + } + -+ resolved_ref = refs_resolve_ref_unsafe(refs, decoration->name, -+ RESOLVE_REF_READING, -+ NULL, &flags); -+ if (!path && resolved_ref && (flags & REF_ISSYMREF) && -+ starts_with(resolved_ref, "refs/heads/")) { ++ /* ++ * If the branch is the current HEAD, then it will be ++ * updated by the default rebase behavior. ++ */ ++ if (head_ref && !strcmp(head_ref, decoration->name)) { ++ free(resolved_ref); decoration = decoration->next; continue; } + ++ path = branch_checked_out(decoration->name); ++ + ALLOC_GROW(ctx->items, + ctx->items_nr + 1, + ctx->items_alloc); @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, memset(item, 0, sizeof(*item)); @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, strbuf_commented_addf(ctx->buf, comment_line_str, "Ref %s checked out at '%s'\n", @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, + item->arg_len = ctx->buf->len - base_offset; + ctx->items_nr++; + ++ free(resolved_ref); decoration = decoration->next; } @@ sequencer.c: static int add_decorations_to_list(const struct commit *commit, } + ## t/t3400-rebase.sh ## +@@ t/t3400-rebase.sh: test_expect_success 'git rebase --update-ref with core.commentChar and branch on + GIT_SEQUENCE_EDITOR="cat >actual" git -c core.commentChar=% \ + rebase -i --update-refs base && + test_grep "% Ref refs/heads/wt-topic checked out at" actual && +- test_grep "% Ref refs/heads/topic2 checked out at" actual ++ test_grep ! "% Ref refs/heads/topic2 checked out at" actual + ' + + test_done + ## t/t3404-rebase-interactive.sh ## @@ t/t3404-rebase-interactive.sh: test_expect_success '--update-refs ignores non-branch decorations' ' + ) && + grep ^update-ref todo >actual && + test_write_lines "update-ref refs/heads/no-conflict-branch" >expect && ++ test_grep ! "^# Ref refs/heads/update-refs checked out" todo && + test_cmp expect actual ' test_expect_success '--update-refs updates refs correctly' ' -: ---------- > 2: a653f56ea2 rebase: guard non-branch symref targets -- gitgitgadget ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v3 1/2] rebase: skip branch symref aliases 2026-07-22 8:15 ` [PATCH v3 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget @ 2026-07-22 8:15 ` Son Luong Ngoc via GitGitGadget 2026-07-22 8:15 ` [PATCH v3 2/2] rebase: guard non-branch symref targets Son Luong Ngoc via GitGitGadget 1 sibling, 0 replies; 13+ messages in thread From: Son Luong Ngoc via GitGitGadget @ 2026-07-22 8:15 UTC (permalink / raw) To: git; +Cc: Kristoffer Haugsbakk, Phillip Wood, Son Luong Ngoc, Son Luong Ngoc From: Son Luong Ngoc <sluongng@gmail.com> git rebase --update-refs can finish rewriting the current branch and then fail while updating a local branch that is a symbolic ref. This can happen during a default-branch rename where refs/heads/main points at refs/heads/master while users migrate. The problem is a partially applied ref update: the main rebase has already succeeded when the later ref update fails. The sequencer queues updates from local branch decorations. Commit 106b6885c7 (rebase: ignore non-branch update-refs) filters out decorations such as HEAD and tags. A branch symref is still a local branch decoration, but refs_update_ref() dereferences it, so an alias to another branch duplicates the concrete branch update. Resolve local branch decorations before queuing them. Skip symrefs whose targets are under refs/heads/ so that only the concrete branch update is queued. Keep an owned copy of the resolved HEAD and skip the current branch before checked-out handling so later ref resolution cannot change the comparison. This prevents a successful rebase from being followed by a failed, partially applied ref update while preserving each alias as a symref. Signed-off-by: Son Luong Ngoc <sluongng@gmail.com> --- sequencer.c | 44 +++++++++++++++++++++++++---------- t/t3400-rebase.sh | 2 +- t/t3404-rebase-interactive.sh | 16 +++++++++++++ 3 files changed, 49 insertions(+), 13 deletions(-) diff --git a/sequencer.c b/sequencer.c index 1355a99a09..63aba60a08 100644 --- a/sequencer.c +++ b/sequencer.c @@ -6465,32 +6465,50 @@ static int add_decorations_to_list(const struct commit *commit, struct todo_add_branch_context *ctx) { const struct name_decoration *decoration = get_name_decoration(&commit->object); - const char *head_ref = refs_resolve_ref_unsafe(get_main_ref_store(the_repository), - "HEAD", - RESOLVE_REF_READING, - NULL, - NULL); + struct ref_store *refs = get_main_ref_store(the_repository); + char *head_ref = refs_resolve_refdup(refs, "HEAD", + RESOLVE_REF_READING, + NULL, NULL); while (decoration) { struct todo_item *item; const char *path; + char *resolved_ref; + int flags = 0; size_t base_offset = ctx->buf->len; /* - * If the branch is the current HEAD, then it will be - * updated by the default rebase behavior. - * Exclude it from the list of refs to update, - * as well as any non-branch decorations. * Non-branch decorations may be present if the pretty format * includes "%d", which would have loaded all refs * into the global decoration table. */ - if ((head_ref && !strcmp(head_ref, decoration->name)) || - (decoration->type != DECORATION_REF_LOCAL)) { + if (decoration->type != DECORATION_REF_LOCAL) { + decoration = decoration->next; + continue; + } + + resolved_ref = refs_resolve_refdup(refs, decoration->name, + RESOLVE_REF_READING, + NULL, &flags); + if (resolved_ref && (flags & REF_ISSYMREF) && + starts_with(resolved_ref, "refs/heads/")) { + free(resolved_ref); + decoration = decoration->next; + continue; + } + + /* + * If the branch is the current HEAD, then it will be + * updated by the default rebase behavior. + */ + if (head_ref && !strcmp(head_ref, decoration->name)) { + free(resolved_ref); decoration = decoration->next; continue; } + path = branch_checked_out(decoration->name); + ALLOC_GROW(ctx->items, ctx->items_nr + 1, ctx->items_alloc); @@ -6498,7 +6516,7 @@ static int add_decorations_to_list(const struct commit *commit, memset(item, 0, sizeof(*item)); /* If the branch is checked out, then leave a comment instead. */ - if ((path = branch_checked_out(decoration->name))) { + if (path) { item->command = TODO_COMMENT; strbuf_commented_addf(ctx->buf, comment_line_str, "Ref %s checked out at '%s'\n", @@ -6518,9 +6536,11 @@ static int add_decorations_to_list(const struct commit *commit, item->arg_len = ctx->buf->len - base_offset; ctx->items_nr++; + free(resolved_ref); decoration = decoration->next; } + free(head_ref); return 0; } diff --git a/t/t3400-rebase.sh b/t/t3400-rebase.sh index e62e07b894..1a02f6546b 100755 --- a/t/t3400-rebase.sh +++ b/t/t3400-rebase.sh @@ -471,7 +471,7 @@ test_expect_success 'git rebase --update-ref with core.commentChar and branch on GIT_SEQUENCE_EDITOR="cat >actual" git -c core.commentChar=% \ rebase -i --update-refs base && test_grep "% Ref refs/heads/wt-topic checked out at" actual && - test_grep "% Ref refs/heads/topic2 checked out at" actual + test_grep ! "% Ref refs/heads/topic2 checked out at" actual ' test_done diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index e64816770a..11afa8be56 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -1975,15 +1975,23 @@ test_expect_success '--update-refs ignores non-branch decorations' ' ) && grep ^update-ref todo >actual && test_write_lines "update-ref refs/heads/no-conflict-branch" >expect && + test_grep ! "^# Ref refs/heads/update-refs checked out" todo && test_cmp expect actual ' test_expect_success '--update-refs updates refs correctly' ' + test_when_finished " + test_might_fail git symbolic-ref -d refs/heads/no-conflict-branch-alias && + test_might_fail git symbolic-ref -d refs/heads/second-alias + " && git checkout -B update-refs no-conflict-branch && git branch -f base HEAD~4 && git branch -f first HEAD~3 && git branch -f second HEAD~3 && git branch -f third HEAD~1 && + git symbolic-ref refs/heads/no-conflict-branch-alias \ + refs/heads/no-conflict-branch && + git symbolic-ref refs/heads/second-alias refs/heads/second && test_commit extra2 fileX && git commit --amend --fixup=L && @@ -1991,8 +1999,16 @@ test_expect_success '--update-refs updates refs correctly' ' test_cmp_rev HEAD~3 refs/heads/first && test_cmp_rev HEAD~3 refs/heads/second && + test_cmp_rev HEAD~3 refs/heads/second-alias && test_cmp_rev HEAD~1 refs/heads/third && test_cmp_rev HEAD refs/heads/no-conflict-branch && + test_cmp_rev HEAD refs/heads/no-conflict-branch-alias && + test_write_lines refs/heads/no-conflict-branch >expect && + git symbolic-ref refs/heads/no-conflict-branch-alias >actual && + test_cmp expect actual && + test_write_lines refs/heads/second >expect && + git symbolic-ref refs/heads/second-alias >actual && + test_cmp expect actual && q_to_tab >expect <<-\EOF && Successfully rebased and updated refs/heads/update-refs. -- gitgitgadget ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v3 2/2] rebase: guard non-branch symref targets 2026-07-22 8:15 ` [PATCH v3 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget 2026-07-22 8:15 ` [PATCH v3 1/2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget @ 2026-07-22 8:15 ` Son Luong Ngoc via GitGitGadget 1 sibling, 0 replies; 13+ messages in thread From: Son Luong Ngoc via GitGitGadget @ 2026-07-22 8:15 UTC (permalink / raw) To: git; +Cc: Kristoffer Haugsbakk, Phillip Wood, Son Luong Ngoc, Son Luong Ngoc From: Son Luong Ngoc <sluongng@gmail.com> A local branch symbolic ref may point outside refs/heads/. Such an alias cannot be skipped like a branch-to-branch alias because its concrete target ref is absent from the local branch decoration list. However, queuing each alias independently can update the same target ref more than once and make the second compare-and-swap fail. A reservation from another worktree can also name either an alias or its resolved target ref, so checking only one form can miss an in-progress update. Fix these cases by checking both the literal alias and its resolved target ref against checked-out reservations. Deduplicate updates by target ref. Also reserve both forms when loading another worktree's update-refs state. This makes different aliases honor the same in-progress update. This keeps non-branch symrefs supported without allowing duplicate or cross-worktree ref updates. Signed-off-by: Son Luong Ngoc <sluongng@gmail.com> --- branch.c | 15 ++++++++ sequencer.c | 19 +++++++++ t/t3404-rebase-interactive.sh | 72 +++++++++++++++++++++++++++++++++++ 3 files changed, 106 insertions(+) diff --git a/branch.c b/branch.c index 243db7d0fc..98a50d8368 100644 --- a/branch.c +++ b/branch.c @@ -442,10 +442,25 @@ static void prepare_checked_out_branches(void) &update_refs)) { struct string_list_item *item; for_each_string_list_item(item, &update_refs) { + char *resolved_ref; + int flags = 0; + old = strmap_put(¤t_checked_out_branches, item->string, xstrdup(wt->path)); free(old); + + resolved_ref = refs_resolve_refdup( + get_main_ref_store(the_repository), + item->string, RESOLVE_REF_READING, + NULL, &flags); + if (resolved_ref && (flags & REF_ISSYMREF)) { + old = strmap_put( + ¤t_checked_out_branches, + resolved_ref, xstrdup(wt->path)); + free(old); + } + free(resolved_ref); } string_list_clear(&update_refs, 1); } diff --git a/sequencer.c b/sequencer.c index 63aba60a08..040b5bf645 100644 --- a/sequencer.c +++ b/sequencer.c @@ -6459,6 +6459,7 @@ struct todo_add_branch_context { size_t items_alloc; struct strbuf *buf; struct string_list refs_to_oids; + struct string_list symref_update_targets; }; static int add_decorations_to_list(const struct commit *commit, @@ -6473,6 +6474,7 @@ static int add_decorations_to_list(const struct commit *commit, while (decoration) { struct todo_item *item; const char *path; + const char *checked_ref; char *resolved_ref; int flags = 0; size_t base_offset = ctx->buf->len; @@ -6508,6 +6510,17 @@ static int add_decorations_to_list(const struct commit *commit, } path = branch_checked_out(decoration->name); + if (!path && resolved_ref && (flags & REF_ISSYMREF)) { + checked_ref = resolved_ref; + path = branch_checked_out(checked_ref); + } + if (!path && resolved_ref && (flags & REF_ISSYMREF) && + string_list_has_string(&ctx->symref_update_targets, + resolved_ref)) { + free(resolved_ref); + decoration = decoration->next; + continue; + } ALLOC_GROW(ctx->items, ctx->items_nr + 1, @@ -6523,6 +6536,10 @@ static int add_decorations_to_list(const struct commit *commit, decoration->name, path); } else { struct string_list_item *sti; + + if (resolved_ref && (flags & REF_ISSYMREF)) + string_list_insert(&ctx->symref_update_targets, + resolved_ref); item->command = TODO_UPDATE_REF; strbuf_addf(ctx->buf, "%s\n", decoration->name); @@ -6554,6 +6571,7 @@ static int todo_list_add_update_ref_commands(struct todo_list *todo_list) struct todo_add_branch_context ctx = { .buf = &todo_list->buf, .refs_to_oids = STRING_LIST_INIT_DUP, + .symref_update_targets = STRING_LIST_INIT_DUP, }; ctx.items_alloc = 2 * todo_list->nr + 1; @@ -6579,6 +6597,7 @@ static int todo_list_add_update_ref_commands(struct todo_list *todo_list) res = write_update_refs_state(&ctx.refs_to_oids); string_list_clear(&ctx.refs_to_oids, 1); + string_list_clear(&ctx.symref_update_targets, 0); if (res) { /* we failed, so clean up the new list. */ diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index 11afa8be56..110ed8ae63 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -2024,6 +2024,78 @@ test_expect_success '--update-refs updates refs correctly' ' test_cmp expect err.trimmed ' +test_expect_success '--update-refs checks resolved non-branch symref target' ' + test_when_finished " + git worktree remove --force checked-out-target-wt && + git symbolic-ref -d refs/heads/non-branch-alias && + git tag -d checked-out-target + " && + git tag checked-out-target HEAD~1 && + git symbolic-ref refs/heads/non-branch-alias refs/tags/checked-out-target && + git worktree add --detach checked-out-target-wt checked-out-target && + git -C checked-out-target-wt symbolic-ref HEAD refs/tags/checked-out-target && + + GIT_SEQUENCE_EDITOR="cat >todo" git rebase -i --update-refs HEAD~2 && + + test_grep "^# Ref refs/heads/non-branch-alias checked out at" todo && + test_write_lines refs/tags/checked-out-target >expect && + git symbolic-ref refs/heads/non-branch-alias >actual && + test_cmp expect actual +' + +test_expect_success '--update-refs deduplicates non-branch symref targets' ' + test_when_finished " + git symbolic-ref -d refs/heads/non-branch-alias-one && + git symbolic-ref -d refs/heads/non-branch-alias-two && + git tag -d shared-non-branch-target + " && + git tag shared-non-branch-target HEAD~1 && + git symbolic-ref refs/heads/non-branch-alias-one \ + refs/tags/shared-non-branch-target && + git symbolic-ref refs/heads/non-branch-alias-two \ + refs/tags/shared-non-branch-target && + + GIT_SEQUENCE_EDITOR=: git rebase -i --force-rebase --update-refs HEAD~2 && + + test_cmp_rev HEAD~1 refs/heads/non-branch-alias-one && + test_cmp_rev HEAD~1 refs/heads/non-branch-alias-two && + test_write_lines refs/tags/shared-non-branch-target >expect && + git symbolic-ref refs/heads/non-branch-alias-one >actual && + test_cmp expect actual && + git symbolic-ref refs/heads/non-branch-alias-two >actual && + test_cmp expect actual +' + +test_expect_success '--update-refs honors non-branch symref reservations' ' + test_when_finished " + test_might_fail git worktree remove --force reserved-target-wt && + test_might_fail git symbolic-ref -d \ + refs/heads/reserved-non-branch-alias-one && + test_might_fail git symbolic-ref -d \ + refs/heads/reserved-non-branch-alias-two && + test_might_fail git tag -d reserved-non-branch-target + " && + git tag reserved-non-branch-target HEAD~1 && + git symbolic-ref refs/heads/reserved-non-branch-alias-one \ + refs/tags/reserved-non-branch-target && + git symbolic-ref refs/heads/reserved-non-branch-alias-two \ + refs/tags/reserved-non-branch-target && + git worktree add --detach reserved-target-wt HEAD && + wt_gitdir=$(git -C reserved-target-wt rev-parse --absolute-git-dir) && + mkdir -p "$wt_gitdir/rebase-merge" && + old_oid=$(git rev-parse refs/heads/reserved-non-branch-alias-one) && + test_write_lines refs/heads/reserved-non-branch-alias-one \ + "$old_oid" "$old_oid" >"$wt_gitdir/rebase-merge/update-refs" && + + GIT_SEQUENCE_EDITOR="cat >todo" git rebase -i --update-refs HEAD~2 && + + test_grep "^# Ref refs/heads/reserved-non-branch-alias-one checked out at" \ + todo && + test_grep "^# Ref refs/heads/reserved-non-branch-alias-two checked out at" \ + todo && + test_grep ! "^update-ref refs/heads/reserved-non-branch-alias" todo +' + test_expect_success 'respect user edits to update-ref steps' ' git checkout -B update-refs-break no-conflict-branch && git branch -f base HEAD~4 && -- gitgitgadget ^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-07-22 8:16 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-28 5:41 [PATCH 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget 2026-05-28 5:42 ` [PATCH 1/2] t3404: add failing branch symref test Son Luong Ngoc via GitGitGadget 2026-06-01 13:52 ` Phillip Wood 2026-05-28 5:42 ` [PATCH 2/2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget 2026-05-28 7:08 ` Kristoffer Haugsbakk 2026-06-01 14:10 ` Phillip Wood 2026-05-28 20:42 ` [PATCH 0/2] rebase: handle --update-refs branch symrefs Junio C Hamano 2026-06-03 10:27 ` [PATCH v2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget 2026-06-04 15:37 ` Phillip Wood 2026-07-22 8:16 ` Son Luong Ngoc 2026-07-22 8:15 ` [PATCH v3 0/2] rebase: handle --update-refs branch symrefs Son Luong Ngoc via GitGitGadget 2026-07-22 8:15 ` [PATCH v3 1/2] rebase: skip branch symref aliases Son Luong Ngoc via GitGitGadget 2026-07-22 8:15 ` [PATCH v3 2/2] rebase: guard non-branch symref targets Son Luong Ngoc via GitGitGadget
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.