tags:

views:

28

answers:

2

Creating a branch for various topics, and not regularly deleting them when I don't need them any more, I have now ended up with about 50 branches ;)

I tried deleting branches and some of them have unmerged changes.

What I want is the ability to see exactly what changes are there in any branch on my repo that are not in the master. Is there a way to do that

Thanks in advance.

+1  A: 

It is quite easy to get an overview of your branches with gitk.

Yorirou
+2  A: 

To list branches with commits not merged to master:

git branch --no-merged master

To list the relevant commits:

git cherry -p <branch> master
gawi