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 master and a dev branch, both pushed to github, I've cloned, pulled, fetched, but I remain unable to get anything other than the master branch back.

I'm sure I'm missing something obvious, but I have RTM and I'm getting no joy at all.

share|improve this question
170  
+1 for "I'm getting no joy at all" – mgalgs Aug 2 '11 at 22:12
16  
The accepted answer here (git branch -a) shows you the branches in the remote, but if you attempt to check any of those out you will be in a 'detached HEAD' state. The next answer down (second most upvotes) answers a different question (to wit: how to pull all branches, and, again, this only works for those you're tracking locally). Several of the comments point out that you could parse the git branch -a results with a shell script that would locally track all the remote branches. Summary: There's no git native way to do what you want and it might not be all that great an idea anyway. – Day Davis Waterbury Jun 18 '12 at 22:43
1  
Maybe just copy the entire folder the old fashioned way? scp some_user@example.com:/home/some_user/project_folder ~ Not sure if that solution works for github though.. – snapfractalpop Sep 26 '12 at 22:51

16 Answers

up vote 1635 down vote accepted

First, clone a remote git repository and cd into it:

$ git clone git://example.com/myproject
$ cd myproject

Next, look at the local branches in your repository:

$ git branch
* master

But there are other branches hiding in your repository! You can see these using the -a flag:

$ git branch -a
* master
  remotes/origin/HEAD
  remotes/origin/master
  remotes/origin/v1.0-stable
  remotes/origin/experimental

If you just want to take a quick peek at an upstream branch, you can check it out directly:

$ git checkout origin/experimental

But if you want to work on that branch, you'll need to create a local tracking branch:

$ git checkout -b experimental origin/experimental

Now, if you look at your local branches, this is what you'll see:

$ git branch
* experimental
  master

You can actually track more than one remote repository using git remote.

$ git remote add win32 git://example.com/users/joe/myproject-win32-port
$ git branch -a
* master
  remotes/origin/HEAD
  remotes/origin/master
  remotes/origin/v1.0-stable
  remotes/origin/experimental
  remotes/win32/master
  remotes/win32/new-widgets

At this point, things are getting pretty crazy, so run gitk to see what's going on:

$ gitk --all &
share|improve this answer
28  
How can someone create automatically all the remote branches, e.g. experimental for origin/experimental? – Cristian Ciupitu Jun 4 '09 at 16:33
20  
Cristian: I used to always create a branch 'foo' for every branch 'origin/foo', but this led to two problems: (1) I wound up with lots of really stale tracking branches that were many commits behind the corresponding remote branch, and (2) in older versions of git, running 'git push' would attempt to push all my local branches to a remote, even when those branches were stale. So now I only keep local branches for things that I'm actively developing, and access the origin/* branches directly if I need information about them. (That said, you could use a shell script to parse 'git branch -a'.) – emk Jul 20 '09 at 21:44
24  
"git fetch <origin-name> <branch-name>" brings the branch down locally for you. – Orange Box Feb 7 '10 at 17:10
32  
Good answer, but kinda misses the question. I was looking for a one-liner to checkout all the remote branches. – Casey Oct 19 '10 at 21:01
6  
The question was about cloning all remote branches, not checking them out. And, as I noted above, you really don't want to make any more local tracking branches than necessary, because when they get really stale, they can cause headaches. – emk Oct 28 '10 at 12:43
show 8 more comments

If you have many remote branches that you want to fetch at once:

$ git remote update
$ git pull --all

Now you can checkout any branch as you need to, without hitting the remote repo.

share|improve this answer
57  
This should be the accepted solution. It's the only one that actually answers the question asked. – Jess Telford Aug 3 '11 at 1:12
35  
But it doesn't seem to do what was asked... If you run those commands and then run "git branch" you will still only see the branches that you had to begin with. – infosec812 Oct 27 '11 at 17:13
3  
If I do git clone, I have the master branch locally and 10 branches "remote". So THIS answer by Gabe was very helpful and answers the question. – basZero Jan 27 '12 at 19:07
2  
this only fetch remote branches that have been locally added not any remote branch – jujule Feb 10 '12 at 11:45
9  
The first command is redundant. Simply git pull --all will do the same – it just won't fetch twice. And infosec812 is right that this does not answer the question anyway. I wonder how this got so many upvotes. – Sven Marnach Apr 6 '12 at 14:03
show 3 more comments

this bash script helped me out:

#!/bin/bash
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master`; do
    git branch --track ${branch##*/} $branch
done

It will create tracking branches for all remote branches, except master (which you probably got from the original clone command). I think you might still need to do a

git fetch --all
git pull --all

to be sure.

share|improve this answer
1  
This is really close to being a perfect solution.. The only thing that would make it better is if this functionality were built-in as an option in git. – infosec812 Oct 27 '11 at 17:15
tweaked: for branch in `git branch -a | sed -n '\=/HEAD$=d; \=/master$=d;s=<SPACE><SPACE>remotes/==p'`; do ... – dubiousjim Jul 3 '12 at 13:13
4  
"One liner": git branch -a | grep -v HEAD | perl -ne 'chomp($_); s|^\*?\s*||; if (m|(.+)/(.+)| && not $d{$2}) {print qq(git branch --track $2 $1/$2\n)} else {$d{$_}=1}' | csh -xfs As usual: test in your setup before copying rm -rf universe as we know it – cfi Sep 18 '12 at 12:38

You can easily switch to a branch without using the fancy "git checkout -b somebranch origin/somebranch" syntax. You can just do:

git checkout somebranch

Git will automatically do the right thing:

$ git checkout somebranch
Branch somebranch set up to track remote branch somebranch from origin.
Switched to a new branch 'somebranch'

Git will check whether a branch with the same name exists in exactly one remote, and if it does, it tracks it the same way as if you had explicitly specified that it's a remote branch. From the git-checkout man page of Git 1.8.2.1:

If <branch> is not found but there does exist a tracking branch in exactly one remote (call it <remote>) with a matching name, treat as equivalent to

$ git checkout -b <branch> --track <remote>/<branch>
share|improve this answer
1  
So, if the name of the branch you checkout is the identical to the name of the remote branch, everything after the "/", then git will create a branch of the same name, everything after the "/", "tracking" that remote? And by tracking, we mean: git push, git pull, etc. will be done on that remote? If this is correct, then expand on your answer with more information, because I aggree with @Daniel, this answer deserves more rep. – BullfrogBlues Jun 14 '12 at 22:08
2  
@BullfrogBlues, the answer to all your questions appears to be yes (I'm using git v1.7.7.4). I agree this behavior should be better known. (It's not in the manual for this version of git.) I actually don't like this behavior, I'd rather get an error and have to say git checkout --track origin/somebranch explicitly. – dubiousjim Jul 3 '12 at 13:05
2  
@dubiousjim: Actually, this is in the manual. git-checkout(1) says: "If <branch> is not found but there does exist a tracking branch in exactly one remote (call it <remote>) with a matching name, treat as equivalent to 'git checkout -b <branch> --track <remote>/<branch>' " (Git V.1.8.1.1). – sleske Feb 27 at 9:01
1  
awesome. this actually works. Documentation leaves something to be desired -- but good answer. – Thufir Mar 23 at 6:41

The fetch that you are doing should get all the remote branches, but it won't create local branches for them. If you use gitk, you should see the remote branches described as "remotes/origin/dev" or something similar.

To create a local branch based on a remote branch, do something like:

git checkout -b dev refs/remotes/origin/dev

Which should return something like:

Branch dev set up to track remote branch refs/remotes/origin/dev.
Switched to a new branch "dev"

Now, when you are on the dev branch, "git pull" will update your local dev to the same point as the remote dev branch. Note that it will fetch all branches, but only pull the one you are on to the top of the tree.

share|improve this answer
10  
You don't need refs/remotes here. git checkout -b dev origin/dev will work fine. – emk Sep 17 '08 at 13:10
3  
This will always work: git checkout -b newlocaldev --track origin/dev. If you want the local branch has the same name as the remote one, and the remote one doesn't have a tricky name, you can omit the -b newlocaldev. With the default branch.autosetupmerge config setting, and assuming you don't have a local branch named dev, these two commands may do the same thing: git checkout -b dev origin/dev and just plain git checkout dev. Finally, git checkout origin/dev doesn't create a new branch, but just puts you in detached HEAD state. – dubiousjim Jul 3 '12 at 13:27

Using the --mirror option seems to copy the remote tracking branches properly. However, it sets up the repository as a bare repository, so you have to turn it back into a normal repository afterwards.

git clone --mirror path/to/original path/to/dest/.git
cd path/to/dest
git config --bool core.bare false
share|improve this answer
3  
You know this actually seems to be a pretty good answer even though it has no votes. Are there any pitfalls to doing it that way? I had to explicitly checkout a branch after running those commands. – test Jan 12 '12 at 4:25
1  
Agree with @test - I found this answer very useful. I had problems with a repository where I had a replace which broke the history, but it worked with this method. Thanks a lot for mention this method Dave ! – barcoder Jun 18 '12 at 3:13
This combined with git push --mirror are exactly what I needed to create an exact duplicate of a remote git repo when moving from github.com to a github enterprise install. Thanks! – Jacob Fike Sep 11 '12 at 22:59
1  
@Dave: Add a final git checkout as last command to finally checkout the head of the current branch on the cloned repo. This is a great answer, by far the best. Be brave, eventually we'll get you to the top :-) – cfi Sep 18 '12 at 7:37
1  
@Dave: Hm. I'm having second thoughts: --mirror does more than just setting up all branches as being tracked. It copies all refs from the origin and subsequent git remote update will do that again. Behaviour of pulls change. I'm back to believing the full copy requires a one-line script. – cfi Sep 18 '12 at 11:53
show 2 more comments

When you do "git clone git://location", all branches and tags are fetched.

In order to work on top of a specific remote branch, assuming it's the origin remote:

git checkout -b branch origin/branchname
share|improve this answer

$ git checkout -b experimental origin/experimental

use

$ git checkout -t origin/experimental

might be better, in terms of tracking remote repository.

share|improve this answer

Just do this:

$ git clone git://example.com/myproject
$ cd myproject
$ git checkout branchxyz
Branch branchxyz set up to track remote branch branchxyz from origin.
Switched to a new branch 'branchxyz'
$ git pull
Already up-to-date.
$ git branch
* branchxyz
  master
$ git branch -a
* branchxyz
  master
  remotes/origin/HEAD -> origin/master
  remotes/origin/branchxyz
  remotes/origin/branch123

You see, 'git clone git://example.com/myprojectt' fetches everything, even the branches, you just have to checkout them, then your local branch will be created.

share|improve this answer
I know this doesn't address the "all" thing, but this is spot on and just really helped me. Simple and easy. Thank you. – sic1 Jun 11 '12 at 22:32

Use my tool git_remote_branch (you need Ruby installed on your machine). It's built specifically to make remote branch manipulations dead easy.

Each time it does an operation on your behalf, it prints it in red at the console. Over time, they finally stick into your brain :-)

If you don't want grb to run commands on your behalf, just use the 'explain' feature. The commands will be printed to your console instead of executed for you.

Finally, all commands have aliases, to make memorization easier.

Note that this is alpha software ;-)

Here's the help when you run grb help:

git_remote_branch version 0.2.6

  Usage:

  grb create branch_name [origin_server] 

  grb publish branch_name [origin_server] 

  grb rename branch_name [origin_server] 

  grb delete branch_name [origin_server] 

  grb track branch_name [origin_server] 



  Notes:
  - If origin_server is not specified, the name 'origin' is assumed 
    (git's default)
  - The rename functionality renames the current branch

  The explain meta-command: you can also prepend any command with the 
keyword 'explain'. Instead of executing the command, git_remote_branch 
will simply output the list of commands you need to run to accomplish 
that goal.

  Example: 
    grb explain create
    grb explain create my_branch github

  All commands also have aliases:
  create: create, new
  delete: delete, destroy, kill, remove, rm
  publish: publish, remotize
  rename: rename, rn, mv, move
  track: track, follow, grab, fetch
share|improve this answer
2  
Word to the wise: It looks like this project was abandoned around the time this answer was posted. I can't find any updates after 2008. Caveat emptor and all that. If I'm wrong, I hope someone will edit and provide a current pointer, because I'd love to have a tool like this handy. – bradheintz Apr 27 '11 at 21:53
Ah yeah, I really need to update grb. E.g. I still have some patches for 1.9.x to apply :-\ House shopping and kids are getting in the way :-) – webmat Jun 7 '11 at 15:07
1  
@webmat, where are your priorities? – dubiousjim Jul 3 '12 at 12:55

I needed to do exactly the same. Here is my ruby script.

#!/usr/bin/env ruby

local = []
remote = {}

# prepare
%x[git reset --hard HEAD]
%x[git checkout master] # makes sure that * is on master
%x[git branch -a].each_line do |line|
  line.strip!
  if /origin\//.match(line)
     remote[line.gsub(/origin\//, '')] = line
   else
     local << line
   end
end
# update 
remote.each_pair do |loc, rem|
  next if local.include?(loc)
  %x[git checkout --track -b #{loc} #{rem}]
end
%x[git fetch]
share|improve this answer

A git clone is supposed to copy the entire repository. Try cloning it, and then run git branch with no additional arguments. It should list all the branches. If then you want to switch to branch "foo" instead of "master", use git checkout foo.

share|improve this answer
2  
without the "-" :) – elmarco Sep 15 '08 at 22:48
1  
You can run git commands with or without the hyphen. Both "git-branch" and "git branch" will work. – Peter Boughton Sep 15 '08 at 22:55
7  
@Peter: not with version >= 1.6 of git, afaik – elmarco Sep 15 '08 at 22:57
I've updated my response to use the non-dashed versions. – MattoxBeckman Jul 19 '12 at 14:37

Better late than never, but here is the best way to do this:

mkdir repo
cd repo
git clone --bare path/to/repo.git .git
git config unset core.bare
git reset --hard

At this point you have a complete copy of the remote repo with all of it's branches (verify with git branch). You can use --mirror instead of --bare if your remote repo has remotes of its own.

share|improve this answer

As posted by Jacob Fike:

Better late than never, but here is the best way to do this:

mkdir repo 
cd repo 
git clone --bare path/to/repo.git .git 
git config unset core.bare 
git reset --hard 

At this point you have a complete copy of the remote repo with all of it's branches (verify with git branch). You can use --mirror instead of --bare if your remote repo has remotes of its own.

I found this worked well for me, giving me a local branch for every branch in the remote, however I found that I needed "--" before the "unset" option of git config.

(Except of course the 'drawback' of doing it this way is that you then have no remote tracking branches in your repository, only local braches, so although you get the branches I'm not sure how well a merge back would work).

share|improve this answer

A little late to the party, but I think this does the trick:

mkdir YourRepo
cd YourRepo
git init --bare .git                       # create a bare repo
git remote add origin REMOTE_URL           # add a remote
git fetch origin refs/heads/*:refs/heads/* # fetch heads
git fetch origin refs/tags/*:refs/tags/*   # fetch tags
git init                                   # reinit work tree
git checkout master                        # checkout a branch

If this does something undesirable, I'd love to know. However, so far, this works for me.

share|improve this answer
According to Note #2 under the refspec section of git fetch (kernel.org/pub/software/scm/git/docs/git-fetch.html), this probably needs to be adjusted. – Andy Sep 12 '12 at 15:25

Such an eternal question and nobody mentions aliases.

Though there aren't any native git one-liner, you can define your own as

git config --global alias.clone-remotes '! git branch -a | sed -n "/\/HEAD /d; /\/master$/d; /remotes/p;" | xargs -L1 git checkout -t'

and then use it as

git clone-branches
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.