I did:
git rebase mybranch --interactive
And I edited my rebase-todo file to something like this:
pick aec2c2b Add foo method to bar
edit 8441f4b Do something slightly wrong
pick dabcc80 Do something else correctly
But when I told Git to make it happen, I got:
Unknown command: pick aec2c2b8f9c314f9dddc67a2c71f8be0a27c0fab Add foo method to bar
Please fix this using 'git rebase --edit-todo'.
What? But pick
is a valid command!
Why did this happen, and how can I fix it?
Output of git --version
:
git version 2.8.1.windows.1
I'm running Windows 10.