i have say two branch 'master' and 'current'. usually i make some changes in master and then cherrypick in curent. but sometimes i made some commit directly in current branch and forgot to cherry pick into master. now i want to get the list of all the commit id(hash) which are present in current branch but missing from master by any two way
- either they haven't been cherry picked in master
- or current branch wasn't merged in master.
how to get the list of these missing commits from master but in current branch?