Given a project with several local branches, each tracking some remote branch, is there a command that lists all branches that have unpushed commits? (That is, even if none of t
You can also see what branches are not yet merged to master
git checkout master
and then
git branch --no-merged