使用git rebase --edit-todo修复脚本后该怎么办?

Ric*_*rdo 4 git git-rebase

我跑,git rebase -i mytag并根据git的参考,使用关键字drop而不是删除一行.好像我的版本(2.5.4)不支持它,所以我收到了这个错误:

Unknown command: drop aaabbbbccccddddd Update README.md 
Please fix this using 'git rebase --edit-todo'.
Run Code Online (Sandbox Code Playgroud)

运行推荐的命令后,我删除了添加a drop,保存并退出编辑器的行.我希望git能继续以前的改装过程,或者让我知道下一步该做什么.相反,我的CLI上没有显示任何消息.

Ric*_*rdo 6

要继续之前的rebase过程,只需运行即可git rebase --continue.