We have a scenario where we need to find all the commits (merge commits) from a feature branch to release branch.
You should be able to do this via the Terminal:
git log origin/master..origin/develop --oneline
Replace origin/master and origin/develop with your 2 branches.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.