Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a git repository. This repo has multiple remote repositories (I think). How can I get a list of the remote repositories that belong to said repo? Some thing like git list --origins or something like that?

share|improve this question
Do you mean a list of remotes? – Michael Durrant Apr 17 '12 at 1:07

2 Answers

up vote 7 down vote accepted

You can get a list of any configured remote urls with the command git remote -v.

This will give you something like the following:

base    /home/***/htdocs/base (fetch)
base    /home/***/htdocs/base (push)
origin  git@bitbucket.org:*** (fetch)
origin  git@bitbucket.org:*** (push)
share|improve this answer

You can list the remote branches like this:

git branch --remote --list

This will return something like:

origin/HEAD -> origin/master
origin2/something
origin3/something_else
...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.