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
  • 185,044
  • 174
  • 569
  • 824

1 Answers1

4

From this answer

$ git branch -vv   # doubly verbose!
Community
  • 1
  • 1
Simone Carletti
  • 173,507
  • 49
  • 363
  • 364