4

样式指南“如何编写 Git 提交消息”部分5. 在主题行中使用命令式表示 git 本身使用命令式:

命令可能听起来有点粗鲁。这就是我们不经常使用它的原因。但它非常适合 git commit 主题行。这样做的一个原因是 git 本身在代表您创建提交时使用命令式。

例如,使用 git merge 时创建的默认消息为:

Merge branch 'myfeature'

当使用 git revert 时:

Revert "Add the thing with the stuff"

This reverts commit cc87791524aedd593cff5a74532befe7ab69ce9d.

或者在 GitHub 拉取请求上单击“合并”按钮时:

Merge pull request #123 from someuser/somebranch

但是,在 bitbucket 上的 git 存储库中,我遇到了指示性情绪:

合并到 feature/123 (pull request #1234)

这是由 bitbucket 而不是 git 创建的消息吗?

4

1 回答 1

1

From looking at my team's branch, when someone merges their own PR, you see

"Merge branch 'branchName' of bitbucket.org...".

When someone merges someone else's PR, you see

"Merged in teamName/repositoryName/branchName"

于 2015-11-25T06:57:40.700 回答