On Thu, 7 Mar 2019 at 09:00, Mike Hommey <mh@xxxxxxxxxxxx> wrote: > On Wed, Mar 06, 2019 at 03:14:11PM +0100, Johannes Schindelin wrote: > > > > just wanted to express my gratitude for your idea to introduce the `break` > > command in `git rebase -i`'s todo list. I use it *all* the time now. > > +1. Before that, I was using `x bash`, and ended up doing `git rebase > --continue` in that shell in many cases, which didn't end up so well 'x bash' will start another shell, that seems an odd thing to do. I have been using 'x false' to generate an error exit status to interrupt the rebase and drop into the current shell. Then 'git rebase --continue' to resume.