我运行git rebase -i mytag
,并根据git's reference使用关键字drop
而不是删除一行。看起来我的版本(2.5.4)不支持它,所以我收到了这个错误:
Unknown command: drop aaabbbbccccddddd Update README.md
Please fix this using 'git rebase --edit-todo'.
运行推荐的命令后,我删除了添加drop
的行,保存并退出编辑器。我希望git
继续之前的rebase过程或让我知道接下来该做什么。相反,我的CLI上没有显示任何消息。
答案 0 :(得分:6)
要继续之前的rebase流程,只需运行git rebase --continue
。