How to edit deferred commands during interactive git rebase?

After editing some commits during a reinstall, I changed my mind about what I want to do for the next commits. How do I edit the rest of the commands?

+3


source to share


1 answer


You can use the command git rebase --edit-todo

.

Description from git-rebase(1)

:



Edit the to-do list during Live Forwarding.

And after editing, continue rebase with git rebase --continue

.

+6


source







All Articles