diff options
author | Derrick Stolee <derrickstolee@github.com> | 2022-07-19 18:33:38 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-07-19 12:49:03 -0700 |
commit | a97d79163e16e2d3777ab4d86c8f006f260c2836 (patch) | |
tree | 29ca62fe322c23ef3e96704dc14f954860d7e2ce /sequencer.h | |
parent | d7ce9a220196b995117252bb236baf135c9b704f (diff) | |
download | git-a97d79163e16e2d3777ab4d86c8f006f260c2836.tar.gz |
sequencer: add update-ref command
Add the boilerplate for an "update-ref" command in the sequencer. This
connects to the current no-op do_update_ref() which will be filled in
after more connections are created.
The syntax in the todo list will be "update-ref <ref-name>" to signal
that we should store the current commit as the value for updating
<ref-name> at the end of the rebase.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sequencer.h')
-rw-r--r-- | sequencer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sequencer.h b/sequencer.h index 8e38eb5ad7..d87feae366 100644 --- a/sequencer.h +++ b/sequencer.h @@ -96,6 +96,7 @@ enum todo_command { TODO_LABEL, TODO_RESET, TODO_MERGE, + TODO_UPDATE_REF, /* commands that do nothing but are counted for reporting progress */ TODO_NOOP, TODO_DROP, |