0

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?

Community
  • 1
  • 1
Dónal
  • 181,534
  • 169
  • 555
  • 808

1 Answers1

4

From this answer

$ git branch -vv   # doubly verbose!
Community
  • 1
  • 1
Simone Carletti
  • 168,884
  • 43
  • 353
  • 360