当我通过Visual Studio git集成执行拉取时,如何编辑由拉取引起的合并提交的消息?当我通过git bash进行提取时,就有机会编辑合并提交消息。能够设置其他默认消息也可以。
由于我在VS中找不到该选项,因此我尝试将git的默认拉动行为更改为包括--no-commit
,因为在命令行上调用git pull --no-commit
可以编辑合并的提交消息在提交之前在Visual Studio中进行操作。我尝试了git config --local merge.commit no
和git config --local pull.commit no
,所以我的gitconfig现在包含以下内容:
[merge]
commit = no
[pull]
commit = no
很遗憾,它没有任何作用。在命令行上执行git pull
不会导致与git pull --no-commit
我在Visual Studio 2019预览版中尝试了此操作。