什么时候git在合并提交消息中包含存储库URL?

时间:2017-09-14 19:42:26

标签: git

我注意到我的团队成员的合并提交消息看起来有所不同,具体取决于谁在进行提交。

有谁知道: git何时建议合并第一种形式的提交消息(即明确说明repo url),以及何时使用第二种形式?

2017-07-05 11:34 Employee 1            M─│─┐ Merge branch 'wip-feature-1' of ssh://repo.company.com:1850/ttt/software into mainbranch
2017-07-05 10:45 Employee 2              │ │ M─┐ Merge branch 'wip-feature-2' into mainbranch

谢谢!

1 个答案:

答案 0 :(得分:1)

我认为他们正在使用git pull进行合并。我也可以在获取后使用git merge FETCH_HEAD获取此信息(这是有道理的,因为git-pull被记录为与git merge FETCH_HEAD相同。)

git merge除了FETCH_HEAD之外的任何参数(或没有参数)都不会产生此消息,它会使用“远程跟踪分支”或仅使用“分支”。