0

我知道我可以使用 git log --graph 功能来执行此操作,但这提供了太多信息。

是否有一个 git 命令可以告诉您特定分支名称何时以及由谁合并到集成分支中?

或者可能是一种修改 git log --graph 以仅显示这两个分支的方法 - 我指定的集成分支和功能分支。

4

1 回答 1

0

或者可能是一种修改 git log --graph 以仅显示这两个分支的方法 - 我指定的集成分支和功能分支。

听起来这个--branches[=<pattern>]选项会让你得到你想要的。从帮助页面:

Pretend as if all the refs in refs/heads are listed on the command line as
<commit>. If <pattern> is given, limit branches to ones matching given shell
glob. If pattern lacks ?, *, or [, /* at the end is implied.
于 2013-01-08T01:04:56.477 回答