How to see which commits in one branch aren't in the other?

前端 未结 6 826
小蘑菇
小蘑菇 2020-11-28 00:56

I have two branches devel and next. In devel I have a more or less huge amount of commits. Some of the commits are cherry picked in next

6条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 01:31

    You might could try doing git log subsets:

    git log --oneline devel ^next
    

提交回复
热议问题