我有branch1branch2,我想要某种形式:
git branch1 isahead branch2
这将显示branch1是否具有branch2不具有的提交(并可能也指定那些提交)。我无法检查差异,因为branch2 branch1之前是(具有branch1没有的提交)。

有办法吗?我浏览了git diff却找不到任何东西

最佳答案

您可以使用
git log branch2..branch1
如果branch1branch2之前没有提交,则输出为空。

您也可以使用git rev-list --count branch2..branch1
这将显示 future 的提交次数

Source

07-24 13:31