rebase-todo files #5616
-
In git when you do an interactive rebase and stop it midway with a break or edit, you can go back to the rebase todo file via: I belived this file also appears when you do a regular rebase that results in a conflict. I noticed when running a basic example of doing a rebase that it doesn't seem to use or make such a file. Is there a way to get libgit2 to make and use such a file, or otherwise how could I use libgit2 to try to do some basic interactive rebases? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There are three types of rebase: |
Beta Was this translation helpful? Give feedback.
There are three types of rebase:
rebase-am
(using patch files),rebase-merge
(using cherry-pick) andrebase-interactive
(using the list of instructions). At the moment, we support onlyrebase-merge
. Our rebase machinery was built with the abstraction points to support interactive, but this has not been implemented. At the moment libgit2 will not start an interactive rebase, nor support any interactive rebase in-progress.