git pull自动合并合并列表

时间:2015-04-19 19:57:43

标签: git

当我做git pull时,我打开nano,要求我写下自动合并的评论。 问题是我从未表现出什么是合并的,我该怎么评论呢?

我在这里缺少什么?

1 个答案:

答案 0 :(得分:2)

您可以设置配置选项merge.log

git config [--global] merge.log true

启用该选项后,Git会将所有合并提交的摘要呈现为合并提交的默认提交消息:

Merge branch 'foo'

* foo: (413 commits)
  Subject of 1st commit
  Subject of 2nd commit
  and so on