我在我的本地存储库(克隆或分叉存储库)上提交了一个提交并从上游存储库中提取更改,我使用:
GIT_TRACE=true git pull upstream master
它被困在
exec: editor: /src/somepath/.git/MERGE_MSG
答案 0 :(得分:1)
检查你的core.editor
git config --global core.editor
git pull upstream master卡在那里没有指定编辑器,你可以指定为:
git config --global core.editor "gedit"
现在如果你运行
git pull upstream master
对于合并消息gedit或您指定的编辑器将打开.git / MERGE_MSG文件,您可以添加合并消息并关闭它。