Last Updated: February 25, 2016
·
551
· dcsg

How to know what branches are merged and not merged within the current branch

Show local and remote branches not merged within the current branch:

git branch -a --no-merged

Show local and remote branches merged within the current branch:

git branch -a --merged