When I do an interactive redirect, for example
git rebase -i HEAD~3
an interactive forwarding editor opens (vim in my case) allowing me to edit commits for rebase
pick c843ea2 Set Vim column limit to 80 (OS X) pick fc32eac Add Bash alias for `pbcopy` (OS X) ....
If I now decide that I want to abort rebase and exit vim using :q , rebase will start anyway. I am using git version 1.9.0.msysgit.0 for windows.
Of course, I can just delete all pick lines, but it can be a lot if I reinstall a longer story. Is there another way?
How can I exit the rebase interactive editor (vim) and abort the redirect?
git git-rebase
René Link Dec 01 '14 at 10:58
source share