Replies: 2 comments 7 replies
-
My guess is that While it is very unlikely that we would change the name of the TODO file, it is certainly a possibility. @dscho will know more about whether current work in |
Beta Was this translation helpful? Give feedback.
-
Since Git (AFAIK) doesn't provide any access to the rebase steps other than the TODO file, I'm highly reliant on the TODO file and its structure (even before a rebase starts). Although, I guess I also don't understand the usage of Also, FYI, this feature is built on the TODO file itself, as I structured this as a "custom editor" in VS Code, which means this is just a UI "view" on top of the actual file itself. I also currently rely on a lot of other rebase files to determine the current state: I'm not sure if there is any other way for Git to provide me with that information (without reading all those files directly). |
Beta Was this translation helpful? Give feedback.
-
I'm not sure if this is the right/best place to post this, so please forgive me if not.
I'm working on expanding the capabilities of the interactive rebase feature I shipped recently in GitLens to continue through the rebase as it pauses.
See here for the current WIP:
My question is since I'm currently allowing the user to modify the rebase steps that are still "todo", do I need to call
git rebase --edit-todo
? It seems to work fine without it, but I'm not sure if I'm getting lucky or causing not yet seen issues.Thanks!
Beta Was this translation helpful? Give feedback.
All reactions