Possible Duplicate:
how do I get git to show me which branches are tracking what?
I've added two remote repos to my Git project
$ git remote show
cavneb
origin
I setup my master branch to track cavneb/master
$ git branch --set-upstream master cavneb/master
Every other branch tracks the corresponding branch from origin. Is there some way that I can see which remote branch is being tracked by each local branch?