From: Phillip Wood <phillip.wood123@gmail.com>
To: Derrick Stolee via GitGitGadget <gitgitgadget@gmail.com>,
git@vger.kernel.org
Cc: gitster@pobox.com, johannes.schindelin@gmx.de, me@ttaylorr.com,
Jeff Hostetler <git@jeffhostetler.com>,
Elijah Newren <newren@gmail.com>,
Derrick Stolee <derrickstolee@github.com>
Subject: Re: [PATCH v4 09/12] sequencer: rewrite update-refs as user edits todo list
Date: Fri, 15 Jul 2022 11:27:41 +0100 [thread overview]
Message-ID: <7a471a98-09d1-78cb-d6dd-a7faaa9071ba@gmail.com> (raw)
In-Reply-To: <29c7c76805abb9b8afd44a65cb39d8f9d3c95892.1657631226.git.gitgitgadget@gmail.com>
Hi Stolee
On 12/07/2022 14:07, Derrick Stolee via GitGitGadget wrote:
> From: Derrick Stolee <derrickstolee@github.com>
>
> An interactive rebase provides opportunities for the user to edit the
> todo list. The --update-refs option initializes the list with some
> 'update-ref <ref>' steps, but the user could add these manually.
> Further, the user could add or remove these steps during pauses in the
> interactive rebase.
>
> Add a new method, todo_list_filter_update_refs(), that scans a todo_list
> and compares it to the stored update-refs file. There are two actions
> that can happen at this point:
>
> 1. If a '<ref>/<before>/<after>' triple in the update-refs file does not
> have a matching 'update-ref <ref>' command in the todo-list _and_ the
> <after> value is the null OID, then remove that triple. Here, the
> user removed the 'update-ref <ref>' command before it was executed,
> since if it was executed then the <after> value would store the
> commit at that position.
>
> 2. If a 'update-ref <ref>' command in the todo-list does not have a
> matching '<ref>/<before>/<after>' triple in the update-refs file,
> then insert a new one. Store the <before> value to be the current
> OID pointed at by <ref>. This is handled inside of the
> init_update_ref_record() helper method.
>
> We can test that this works by rewriting the todo-list several times in
> the course of a rebase. Check that each ref is locked or unlocked for
> updates after each todo-list update. We an also verify that the ref
> update fails if a concurrent process updates one of the refs after the
> rebase process records the "locked" ref location.
Thanks for adding this and taking the time to write some good tests.
When adding a new update-ref command to the todo list it would be nice
to check if the ref is already checked. We could print a warning or
force the user to re-edit the todo list as we do if they delete a pick
and rebase.missingcommitscheck == error
The checks below are quadratic but we don't expect that many refs so
that should be fine. I don't think it is worth the complexity of
building a hash table or whatever at this stage.
Best Wishes
Phillip
> To help these tests, add a new 'set_replace_editor' helper that will
> replace the todo-list with an exact file.
>
> Reported-by: Phillip Wood <phillip.wood123@gmail.com>
> Signed-off-by: Derrick Stolee <derrickstolee@github.com>
> ---
> rebase-interactive.c | 6 ++
> sequencer.c | 96 +++++++++++++++++++++++
> sequencer.h | 12 +++
> t/lib-rebase.sh | 15 ++++
> t/t3404-rebase-interactive.sh | 139 ++++++++++++++++++++++++++++++++++
> 5 files changed, 268 insertions(+)
>
> diff --git a/rebase-interactive.c b/rebase-interactive.c
> index 1ff07647af3..7407c593191 100644
> --- a/rebase-interactive.c
> +++ b/rebase-interactive.c
> @@ -146,6 +146,12 @@ int edit_todo_list(struct repository *r, struct todo_list *todo_list,
> return -4;
> }
>
> + /*
> + * See if branches need to be added or removed from the update-refs
> + * file based on the new todo list.
> + */
> + todo_list_filter_update_refs(r, new_todo);
> +
> return 0;
> }
>
> diff --git a/sequencer.c b/sequencer.c
> index 2d89b3b727a..2808c027d68 100644
> --- a/sequencer.c
> +++ b/sequencer.c
> @@ -4141,6 +4141,102 @@ cleanup:
> return result;
> }
>
> +/*
> + * Parse the update-refs file for the current rebase, then remove the
> + * refs that do not appear in the todo_list (and have not had updated
> + * values stored) and add refs that are in the todo_list but not
> + * represented in the update-refs file.
> + *
> + * If there are changes to the update-refs list, then write the new state
> + * to disk.
> + */
> +void todo_list_filter_update_refs(struct repository *r,
> + struct todo_list *todo_list)
> +{
> + int i;
> + int updated = 0;
> + struct string_list update_refs = STRING_LIST_INIT_DUP;
> +
> + sequencer_get_update_refs_state(r->gitdir, &update_refs);
> +
> + /*
> + * For each item in the update_refs list, if it has no updated
> + * value and does not appear in the todo_list, then remove it
> + * from the update_refs list.
> + */
> + for (i = 0; i < update_refs.nr; i++) {
> + int j;
> + int found = 0;
> + const char *ref = update_refs.items[i].string;
> + size_t reflen = strlen(ref);
> + struct update_ref_record *rec = update_refs.items[i].util;
> +
> + /* OID already stored as updated. */
> + if (!is_null_oid(&rec->after))
> + continue;
> +
> + for (j = 0; !found && j < todo_list->total_nr; j++) {
> + struct todo_item *item = &todo_list->items[j];
> + const char *arg = todo_list->buf.buf + item->arg_offset;
> +
> + if (item->command != TODO_UPDATE_REF)
> + continue;
> +
> + if (item->arg_len != reflen ||
> + strncmp(arg, ref, reflen))
> + continue;
> +
> + found = 1;
> + }
> +
> + if (!found) {
> + free(update_refs.items[i].string);
> + free(update_refs.items[i].util);
> +
> + update_refs.nr--;
> + MOVE_ARRAY(update_refs.items + i, update_refs.items + i + 1, update_refs.nr - i);
> +
> + updated = 1;
> + i--;
> + }
> + }
> +
> + /*
> + * For each todo_item, check if its ref is in the update_refs list.
> + * If not, then add it as an un-updated ref.
> + */
> + for (i = 0; i < todo_list->total_nr; i++) {
> + struct todo_item *item = &todo_list->items[i];
> + const char *arg = todo_list->buf.buf + item->arg_offset;
> + int j, found = 0;
> +
> + if (item->command != TODO_UPDATE_REF)
> + continue;
> +
> + for (j = 0; !found && j < update_refs.nr; j++) {
> + const char *ref = update_refs.items[j].string;
> +
> + found = strlen(ref) == item->arg_len &&
> + !strncmp(ref, arg, item->arg_len);
> + }
> +
> + if (!found) {
> + struct string_list_item *inserted;
> + struct strbuf argref = STRBUF_INIT;
> +
> + strbuf_add(&argref, arg, item->arg_len);
> + inserted = string_list_insert(&update_refs, argref.buf);
> + inserted->util = init_update_ref_record(argref.buf);
> + strbuf_release(&argref);
> + updated = 1;
> + }
> + }
> +
> + if (updated)
> + write_update_refs_state(&update_refs);
> + string_list_clear(&update_refs, 1);
> +}
> +
> static int do_update_ref(struct repository *r, const char *refname)
> {
> struct string_list_item *item;
> diff --git a/sequencer.h b/sequencer.h
> index e671d7e0743..98f3bcc1658 100644
> --- a/sequencer.h
> +++ b/sequencer.h
> @@ -132,6 +132,18 @@ void todo_list_release(struct todo_list *todo_list);
> const char *todo_item_get_arg(struct todo_list *todo_list,
> struct todo_item *item);
>
> +/*
> + * Parse the update-refs file for the current rebase, then remove the
> + * refs that do not appear in the todo_list (and have not had updated
> + * values stored) and add refs that are in the todo_list but not
> + * represented in the update-refs file.
> + *
> + * If there are changes to the update-refs list, then write the new state
> + * to disk.
> + */
> +void todo_list_filter_update_refs(struct repository *r,
> + struct todo_list *todo_list);
> +
> /* Call this to setup defaults before parsing command line options */
> void sequencer_init_config(struct replay_opts *opts);
> int sequencer_pick_revisions(struct repository *repo,
> diff --git a/t/lib-rebase.sh b/t/lib-rebase.sh
> index ec6b9b107da..b57541356bd 100644
> --- a/t/lib-rebase.sh
> +++ b/t/lib-rebase.sh
> @@ -207,3 +207,18 @@ check_reworded_commits () {
> >reword-log &&
> test_cmp reword-expected reword-log
> }
> +
> +# usage: set_replace_editor <file>
> +#
> +# Replace the todo file with the exact contents of the given file.
> +set_replace_editor () {
> + cat >script <<-\EOF &&
> + cat FILENAME >"$1"
> +
> + echo 'rebase -i script after editing:'
> + cat "$1"
> + EOF
> +
> + sed -e "s/FILENAME/$1/g" <script | write_script fake-editor.sh &&
> + test_set_editor "$(pwd)/fake-editor.sh"
> +}
> diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh
> index a37820fa728..7bfbd405ab8 100755
> --- a/t/t3404-rebase-interactive.sh
> +++ b/t/t3404-rebase-interactive.sh
> @@ -1830,6 +1830,145 @@ test_expect_success '--update-refs updates refs correctly' '
> test_cmp_rev HEAD refs/heads/no-conflict-branch
> '
>
> +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 &&
> + git branch -f first HEAD~3 &&
> + git branch -f second HEAD~3 &&
> + git branch -f third HEAD~1 &&
> + git branch -f unseen base &&
> +
> + # First, we will add breaks to the expected todo file
> + cat >fake-todo-1 <<-EOF &&
> + pick $(git rev-parse HEAD~3)
> + break
> + update-ref refs/heads/second
> + update-ref refs/heads/first
> +
> + pick $(git rev-parse HEAD~2)
> + pick $(git rev-parse HEAD~1)
> + update-ref refs/heads/third
> +
> + pick $(git rev-parse HEAD)
> + update-ref refs/heads/no-conflict-branch
> + EOF
> +
> + # Second, we will drop some update-refs commands (and move one)
> + cat >fake-todo-2 <<-EOF &&
> + update-ref refs/heads/second
> +
> + pick $(git rev-parse HEAD~2)
> + update-ref refs/heads/third
> + pick $(git rev-parse HEAD~1)
> + break
> +
> + pick $(git rev-parse HEAD)
> + EOF
> +
> + # Third, we will:
> + # * insert a new one (new-branch),
> + # * re-add an old one (first), and
> + # * add a second instance of a previously-stored one (second)
> + cat >fake-todo-3 <<-EOF &&
> + update-ref refs/heads/unseen
> + update-ref refs/heads/new-branch
> + pick $(git rev-parse HEAD)
> + update-ref refs/heads/first
> + update-ref refs/heads/second
> + EOF
> +
> + (
> + set_replace_editor fake-todo-1 &&
> + git rebase -i --update-refs primary &&
> +
> + # These branches are currently locked.
> + for b in first second third no-conflict-branch
> + do
> + test_must_fail git branch -f $b base || return 1
> + done &&
> +
> + set_replace_editor fake-todo-2 &&
> + git rebase --edit-todo &&
> +
> + # These branches are currently locked.
> + for b in second third
> + do
> + test_must_fail git branch -f $b base || return 1
> + done &&
> +
> + # These branches are currently unlocked for checkout.
> + for b in first no-conflict-branch
> + do
> + git worktree add wt-$b $b &&
> + git worktree remove wt-$b || return 1
> + done &&
> +
> + git rebase --continue &&
> +
> + set_replace_editor fake-todo-3 &&
> + git rebase --edit-todo &&
> +
> + # These branches are currently locked.
> + for b in second third first unseen
> + do
> + test_must_fail git branch -f $b base || return 1
> + done &&
> +
> + # These branches are currently unlocked for checkout.
> + for b in no-conflict-branch
> + do
> + git worktree add wt-$b $b &&
> + git worktree remove wt-$b || return 1
> + done &&
> +
> + git rebase --continue
> + ) &&
> +
> + test_cmp_rev HEAD~2 refs/heads/third &&
> + test_cmp_rev HEAD~1 refs/heads/unseen &&
> + test_cmp_rev HEAD~1 refs/heads/new-branch &&
> + test_cmp_rev HEAD refs/heads/first &&
> + test_cmp_rev HEAD refs/heads/second &&
> + test_cmp_rev HEAD refs/heads/no-conflict-branch
> +'
> +
> +test_expect_success '--update-refs: check failed ref update' '
> + git checkout -B update-refs-error no-conflict-branch &&
> + git branch -f base HEAD~4 &&
> + git branch -f first HEAD~3 &&
> + git branch -f second HEAD~2 &&
> + git branch -f third HEAD~1 &&
> +
> + cat >fake-todo <<-EOF &&
> + pick $(git rev-parse HEAD~3)
> + break
> + update-ref refs/heads/first
> +
> + pick $(git rev-parse HEAD~2)
> + update-ref refs/heads/second
> +
> + pick $(git rev-parse HEAD~1)
> + update-ref refs/heads/third
> +
> + pick $(git rev-parse HEAD)
> + update-ref refs/heads/no-conflict-branch
> + EOF
> +
> + (
> + set_replace_editor fake-todo &&
> + git rebase -i --update-refs base
> + ) &&
> +
> + # At this point, the values of first, second, and third are
> + # recorded in the update-refs file. We will force-update the
> + # "second" ref, but "git branch -f" will not work because of
> + # the lock in the update-refs file.
> + git rev-parse third >.git/refs/heads/second &&
> +
> + git rebase --continue 2>err &&
> + grep "update_ref failed for ref '\''refs/heads/second'\''" err
> +'
> +
> # This must be the last test in this file
> test_expect_success '$EDITOR and friends are unchanged' '
> test_editor_unchanged
next prev parent reply other threads:[~2022-07-15 10:27 UTC|newest]
Thread overview: 144+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-03 13:37 [PATCH 0/4] rebase: update branches in multi-part topic Derrick Stolee via GitGitGadget
2022-06-03 13:37 ` [PATCH 1/4] log-tree: create for_each_decoration() Derrick Stolee via GitGitGadget
2022-06-03 17:39 ` Junio C Hamano
2022-06-03 17:58 ` Derrick Stolee
2022-06-03 18:40 ` Junio C Hamano
2022-06-03 13:37 ` [PATCH 2/4] branch: add branch_checked_out() helper Derrick Stolee via GitGitGadget
2022-06-03 18:31 ` Junio C Hamano
2022-06-03 13:37 ` [PATCH 3/4] rebase: add --update-refs option Derrick Stolee via GitGitGadget
2022-06-07 10:25 ` Phillip Wood
2022-06-03 13:37 ` [PATCH 4/4] rebase: add rebase.updateRefs config option Derrick Stolee via GitGitGadget
2022-06-03 16:56 ` [PATCH 0/4] rebase: update branches in multi-part topic Junio C Hamano
2022-06-03 18:27 ` Taylor Blau
2022-06-03 18:52 ` Junio C Hamano
2022-06-03 19:59 ` Jeff Hostetler
2022-06-03 20:03 ` Taylor Blau
2022-06-03 21:23 ` Junio C Hamano
2022-06-04 15:28 ` Phillip Wood
2022-06-06 15:12 ` Derrick Stolee
2022-06-07 10:11 ` Phillip Wood
2022-06-07 19:39 ` Derrick Stolee
2022-06-08 16:03 ` Junio C Hamano
2022-06-06 16:36 ` Junio C Hamano
2022-06-07 6:25 ` Elijah Newren
2022-06-07 20:42 ` [PATCH v2 0/7] " Derrick Stolee via GitGitGadget
2022-06-07 20:42 ` [PATCH v2 1/7] log-tree: create for_each_decoration() Derrick Stolee via GitGitGadget
2022-06-07 20:42 ` [PATCH v2 2/7] branch: add branch_checked_out() helper Derrick Stolee via GitGitGadget
2022-06-07 22:09 ` Junio C Hamano
2022-06-08 2:14 ` Derrick Stolee
2022-06-08 2:43 ` Derrick Stolee
2022-06-08 4:52 ` Junio C Hamano
2022-06-07 20:42 ` [PATCH v2 3/7] sequencer: define array with enum values Derrick Stolee via GitGitGadget
2022-06-07 22:11 ` Junio C Hamano
2022-06-07 20:42 ` [PATCH v2 4/7] sequencer: add update-refs command Derrick Stolee via GitGitGadget
2022-06-07 20:42 ` [PATCH v2 5/7] rebase: add --update-refs option Derrick Stolee via GitGitGadget
2022-06-07 20:42 ` [PATCH v2 6/7] sequencer: implement 'update-refs' command Derrick Stolee via GitGitGadget
2022-06-07 22:23 ` Junio C Hamano
2022-06-07 20:42 ` [PATCH v2 7/7] rebase: add rebase.updateRefs config option Derrick Stolee via GitGitGadget
2022-06-08 14:32 ` [PATCH v2 0/7] rebase: update branches in multi-part topic Phillip Wood
2022-06-08 18:09 ` Derrick Stolee
2022-06-09 10:04 ` Phillip Wood
2022-06-28 13:25 ` [PATCH v3 0/8] " Derrick Stolee via GitGitGadget
2022-06-28 13:25 ` [PATCH v3 1/8] t2407: test branches currently using apply backend Derrick Stolee via GitGitGadget
2022-06-28 20:44 ` Junio C Hamano
2022-06-29 12:54 ` Derrick Stolee
2022-06-30 16:44 ` Junio C Hamano
2022-06-30 17:35 ` Derrick Stolee
2022-06-28 13:25 ` [PATCH v3 2/8] branch: consider refs under 'update-refs' Derrick Stolee via GitGitGadget
2022-06-28 20:48 ` Junio C Hamano
2022-06-29 12:58 ` Derrick Stolee
2022-06-30 9:47 ` Phillip Wood
2022-06-30 16:50 ` Junio C Hamano
2022-06-30 16:49 ` Junio C Hamano
2022-06-30 9:32 ` Phillip Wood
2022-06-30 13:35 ` Derrick Stolee
2022-07-01 13:40 ` Phillip Wood
2022-06-28 13:25 ` [PATCH v3 3/8] rebase-interactive: update 'merge' description Derrick Stolee via GitGitGadget
2022-06-28 21:00 ` Junio C Hamano
2022-06-29 13:02 ` Derrick Stolee
2022-06-30 17:05 ` Junio C Hamano
2022-06-30 9:34 ` Phillip Wood
2022-06-28 13:25 ` [PATCH v3 4/8] sequencer: define array with enum values Derrick Stolee via GitGitGadget
2022-06-28 21:02 ` Junio C Hamano
2022-06-28 13:25 ` [PATCH v3 5/8] sequencer: add update-ref command Derrick Stolee via GitGitGadget
2022-06-30 9:39 ` Phillip Wood
2022-06-28 13:25 ` [PATCH v3 6/8] rebase: add --update-refs option Derrick Stolee via GitGitGadget
2022-06-28 21:09 ` Junio C Hamano
2022-06-29 13:03 ` Derrick Stolee
2022-07-01 9:20 ` Phillip Wood
2022-07-01 21:20 ` Elijah Newren
2022-07-04 12:56 ` Derrick Stolee
2022-07-04 17:57 ` Elijah Newren
2022-07-05 22:22 ` Derrick Stolee
2022-07-08 2:27 ` Elijah Newren
2022-06-28 13:25 ` [PATCH v3 7/8] rebase: update refs from 'update-ref' commands Derrick Stolee via GitGitGadget
2022-06-28 21:15 ` Junio C Hamano
2022-06-29 13:05 ` Derrick Stolee
2022-06-30 17:09 ` Junio C Hamano
2022-06-29 13:06 ` Derrick Stolee
2022-07-01 9:31 ` Phillip Wood
2022-07-01 18:35 ` Junio C Hamano
2022-07-01 23:18 ` Elijah Newren
2022-07-04 13:05 ` Derrick Stolee
2022-06-28 13:25 ` [PATCH v3 8/8] rebase: add rebase.updateRefs config option Derrick Stolee via GitGitGadget
2022-06-28 21:19 ` [PATCH v3 0/8] rebase: update branches in multi-part topic Junio C Hamano
2022-07-01 13:43 ` Phillip Wood
2022-07-12 13:06 ` [PATCH v4 00/12] " Derrick Stolee via GitGitGadget
2022-07-12 13:06 ` [PATCH v4 01/12] t2407: test bisect and rebase as black-boxes Derrick Stolee via GitGitGadget
2022-07-12 13:06 ` [PATCH v4 02/12] t2407: test branches currently using apply backend Derrick Stolee via GitGitGadget
2022-07-12 13:06 ` [PATCH v4 03/12] branch: consider refs under 'update-refs' Derrick Stolee via GitGitGadget
2022-07-15 15:37 ` Phillip Wood
2022-07-12 13:06 ` [PATCH v4 04/12] rebase-interactive: update 'merge' description Derrick Stolee via GitGitGadget
2022-07-12 13:06 ` [PATCH v4 05/12] sequencer: define array with enum values Derrick Stolee via GitGitGadget
2022-07-12 13:06 ` [PATCH v4 06/12] sequencer: add update-ref command Derrick Stolee via GitGitGadget
2022-07-12 13:07 ` [PATCH v4 07/12] rebase: add --update-refs option Derrick Stolee via GitGitGadget
2022-07-16 19:30 ` Elijah Newren
2022-07-19 15:50 ` Derrick Stolee
2022-07-18 9:05 ` SZEDER Gábor
2022-07-18 16:55 ` Derrick Stolee
2022-07-18 19:35 ` Junio C Hamano
2022-07-19 15:53 ` Derrick Stolee
2022-07-19 16:44 ` Junio C Hamano
2022-07-19 16:47 ` Derrick Stolee
2022-07-12 13:07 ` [PATCH v4 08/12] rebase: update refs from 'update-ref' commands Derrick Stolee via GitGitGadget
2022-07-15 13:25 ` Phillip Wood
2022-07-19 16:04 ` Derrick Stolee
2022-07-12 13:07 ` [PATCH v4 09/12] sequencer: rewrite update-refs as user edits todo list Derrick Stolee via GitGitGadget
2022-07-15 10:27 ` Phillip Wood [this message]
2022-07-15 13:13 ` Derrick Stolee
2022-07-18 13:09 ` Phillip Wood
2022-07-16 19:20 ` Elijah Newren
2022-07-12 13:07 ` [PATCH v4 10/12] rebase: add rebase.updateRefs config option Derrick Stolee via GitGitGadget
2022-07-12 13:07 ` [PATCH v4 11/12] sequencer: ignore HEAD ref under --update-refs Derrick Stolee via GitGitGadget
2022-07-12 13:07 ` [PATCH v4 12/12] sequencer: notify user of --update-refs activity Derrick Stolee via GitGitGadget
2022-07-15 10:12 ` Phillip Wood
2022-07-15 13:20 ` Derrick Stolee
2022-07-16 20:51 ` Elijah Newren
2022-07-16 22:09 ` Elijah Newren
2022-07-19 16:09 ` Derrick Stolee
2022-07-12 15:37 ` [PATCH v4 00/12] rebase: update branches in multi-part topic Junio C Hamano
2022-07-14 14:50 ` Derrick Stolee
2022-07-14 18:11 ` Junio C Hamano
2022-07-16 21:23 ` Elijah Newren
2022-07-16 20:56 ` Elijah Newren
2022-07-15 15:41 ` Phillip Wood
2022-07-19 18:33 ` [PATCH v5 " Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 01/12] t2407: test bisect and rebase as black-boxes Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 02/12] t2407: test branches currently using apply backend Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 03/12] branch: consider refs under 'update-refs' Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 04/12] rebase-interactive: update 'merge' description Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 05/12] sequencer: define array with enum values Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 06/12] sequencer: add update-ref command Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 07/12] rebase: add --update-refs option Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 08/12] rebase: update refs from 'update-ref' commands Derrick Stolee via GitGitGadget
2022-07-21 14:03 ` Phillip Wood
2022-07-19 18:33 ` [PATCH v5 09/12] sequencer: rewrite update-refs as user edits todo list Derrick Stolee via GitGitGadget
2022-07-21 14:04 ` Phillip Wood
2022-07-19 18:33 ` [PATCH v5 10/12] rebase: add rebase.updateRefs config option Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 11/12] sequencer: ignore HEAD ref under --update-refs Derrick Stolee via GitGitGadget
2022-07-19 18:33 ` [PATCH v5 12/12] sequencer: notify user of --update-refs activity Derrick Stolee via GitGitGadget
2022-07-21 4:35 ` [PATCH v5 00/12] rebase: update branches in multi-part topic Elijah Newren
2022-07-21 12:12 ` Derrick Stolee
2022-07-21 19:43 ` Elijah Newren
2022-07-21 20:05 ` Derrick Stolee
2022-07-21 14:04 ` Phillip Wood
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7a471a98-09d1-78cb-d6dd-a7faaa9071ba@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=derrickstolee@github.com \
--cc=git@jeffhostetler.com \
--cc=git@vger.kernel.org \
--cc=gitgitgadget@gmail.com \
--cc=gitster@pobox.com \
--cc=johannes.schindelin@gmx.de \
--cc=me@ttaylorr.com \
--cc=newren@gmail.com \
--cc=phillip.wood@dunelm.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).