Is there some way, maybe using git log, that I can see if any of my commits in "develop" have not been cherry-picked to "otherbranch" yet?
For example I make 6 commits to develop, and cherry-pick 5 of them to otherbranch. What git log command could I execute to output the 1 commit I missed?
(All our commits are pushed through Gerrit, so any Gerrit based solutions would help too.)