To list branches with commits not merged into master:
git branch --no-merged master
To list the relevant commits:
git cherry -v master <branch>
To see both local and remote:
git branch -a --no-merged master
or with -r to just see remote
To list branches with commits not merged into master:
git branch --no-merged master
To list the relevant commits:
git cherry -v master <branch>
To see both local and remote:
git branch -a --no-merged master
or with -r to just see remote