Git - 如何关闭合并远程分支时打开的提示?

Git - How to close a prompt opened while merging a remote branch?

我是新手 git 还在学习中。我正在从远程合并一个分支。但我坚持这个提示。

我想知道如何编辑这个? 如何保存? 最重要的是如何关闭它。?

我尝试 'q' 退出,space 到 'scroll' 但它不起作用。

谢谢!

Git bash 使用 Vi/Vim 修改提交消息:

  • dd 删除一行文本
  • i 进入插入模式以输入文本。
  • ESC 退出编辑模式。
  • :wq 将写入(保存)然后关闭。

这是一个cheat sheet