git branch --merged list of branches merged into the HEAD of the current branch(i.e., the tip of the current branch)
Merged List the branch that has not been mergedgit branch --no-merged
By default, only local branches are displayed. Adding -a displays local and remote branches.
git branch -a --merged/no-merged
Add -r to show only remote branches.
git branch -r --merged/no-merged