Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm going through a tutorial and it said this command, "git branch -a" would list all my remotes, both local and remote. So i did that and this is what i got.

David-Adamss-MacBook-Pro:releventz davidadams$ git branch -a
* master
  remotes/flashdrive/master
  remotes/origin/HEAD -> origin/master
  remotes/origin/master
David-Adamss-MacBook-Pro:releventz davidadams$ 

Master is the branch i'm currently on and is green. All three remote branches are red. I had a little trouble when i was trying to get the path right to my remote to add and push to. Could that be a reason i have three remote branches instead of just one? I just added 'flashdrive' as my remote and pushed to it. So i know that's the most recent but what are the other two?

share|improve this question

2 Answers

up vote 1 down vote accepted

origin is the default name of the git remote repository from where you clone your local repository.

  • remotes/origin/master: the master branch from the origin repository.
  • remotes/origin/HEAD -> origin/master: the HEAD branch, a kind of branch that represent the current branch* (in fact that's not true but it's a little more complicated, see What is git head, exactly?)

Obviously, the last branch, is a remote master branch, located on the remote repository you just added.

share|improve this answer
so are "remotes/origin/master" and "remotes/origin/HEAD" one and the same currently? – David Jun 30 '11 at 14:57
Currently yes. Imagine you have a local bugfix branch, and a remote origin/bugfix branch, when you git checkout bugfix, origin/HEAD would be, by default, origin/bugfix, allowing you to do git push bugfix:origin/HEAD. – Clement Herreman Jun 30 '11 at 15:14

I just added 'flashdrive' as my remote and pushed to it. So i know that's the most recent but what are the other two?

Note that your local branch master isn't currently tracking a remote master branch (either remotes/flashdrive/master or remotes/origin/master).
That can lead to an issue with latest git1.8.0: "Git 1.8.0: fatal: The current branch master has multiple upstream branches, refusing to push"

remotes/origin/HEAD is a symbolic HEAD that you can change.
See "How does origin/HEAD get set?".

origin/HEAD represents the default branch on the remote, i.e. the HEAD that's in that remote repository you're calling origin.

When you clone your repo, you will checkout by default the branch that your current remotes/origin/HEAD is referring to.

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.