git中Please enter a commit message to explain why this merge is necessary.

问题:

Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

翻译:

更新被拒绝,因为当前分支的提示已过期
提示:它的远程对应。集成远程更改(例如。
提示:“git pull…”),然后再推。
提示:有关详细信息,请参阅“git push--help”中的“Note about fast forwards”。

image.png
解决办法

git 在pull或者合并分支的时候有时会遇到这个界面。可以不管(直接下面3,4步),如果要输入解释的话就需要:

1.按键盘字母 i 进入insert模式
2.修改最上面那行黄色合并信息,可以不修改
3.按键盘左上角"Esc"
4.输入":wq",注意是冒号+wq,按回车键即可

你可能感兴趣的:(git中Please enter a commit message to explain why this merge is necessary.)