git merge through terminal
我正在尝试通过终端进行Git合并。我在
1 2 | git checkout develop git merge --no-ff fix_stuff |
现在我看到一个文本编辑器——仍然在终端中——它有以下消息
1 2 3 4 5 | # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit. |
号
当然,我按了
我通过mac el capitan使用android studio终端
因为你按了
1 | <esc> :w <enter> |
写入文件并
1 | <esc> :q <enter> |
号
退出。注:
按Esc键,然后键入":wq"并按Enter键。
如果您已经将vim设置为编辑器,那么将启动vim来请求您在git合并之后输入提交消息——不是ff。
输入提交消息后,需要保存消息并退出VIM。
保存和退出VIM有两种方法
1。按Esc键切换到命令模式,然后按Enter键
1 2 | :w :q |
2。ctrl+z两次。