如何关闭git pull产生的merge 信息

编辑 ~/.gitconfig

[core]
    mergeoptions = --no-edit 

或者终端之行

git config --global core.mergeoptions --no-edit

原文地址:https://www.cnblogs.com/hailspace/p/5920873.html