在Visual Studio中更改git pull merge commit消息

时间:2019-02-21 16:02:38

标签: git visual-studio

当我通过Visual Studio git集成执行拉取时,如何编辑由拉取引起的合并提交的消息?当我通过git bash进行提取时,就有机会编辑合并提交消息。能够设置其他默认消息也可以。

由于我在VS中找不到该选项,因此我尝试将git的默认拉动行为更改为包括--no-commit,因为在命令行上调用git pull --no-commit可以编辑合并的提交消息在提交之前在Visual Studio中进行操作。我尝试了git config --local merge.commit nogit config --local pull.commit no,所以我的gitconfig现在包含以下内容:

[merge]
    commit = no
[pull]
    commit = no

很遗憾,它没有任何作用。在命令行上执行git pull不会导致与git pull --no-commit

相同的行为

我在Visual Studio 2019预览版中尝试了此操作。

0 个答案:

没有答案