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

Possible Duplicate:
How to clone a single branch in git?

Git clone will behave copying remote current working branch into local. Is there any way to clone a specific branch by myself without switching branches on remote repo? Thanks

share|improve this question
4  
The answer by Jorge Eduardo Cardona answers to the point – Mahendra Nov 13 '12 at 18:04
Please accept the answer from Jorge Eduardo Cardona as it will be displayed on top! – Sdra Apr 25 at 13:44

marked as duplicate by casperOne Dec 4 '11 at 16:12

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

7 Answers

up vote 37 down vote accepted
git init
git remote add -t refspec remotename host:/dir.git
git fetch

But IIRC, by default clone fetches all branches from remote, not current working branch.

share|improve this answer
12  
Thanks. I figured out using below method. git clone <remote_repo> git checkout -b <wanted_branch> origin/<wanted_branch> git branch -D master – Scud Dec 16 '09 at 0:05
That's awesome -- I didn't realize you could specify just a single refspec like that. But did you mean "git remote add origin -t refspec etc..."? – ebneter Dec 16 '09 at 0:37
1  
I think so, and you will get [remote "origin"] fetch = +refs/heads/(refspec):refs/remotes/origin/(refspec) instead of fetch = +refs/heads/*:refs/remotes/origin/* – Scud Dec 16 '09 at 1:54
ebneter, yes, I forgot the "remote" section name. – Michael Krelin - hacker Dec 16 '09 at 8:23
1  
Scud, honestly, I prefer vim .git/config for these needs. This way I sure know what am I to get ;-) – Michael Krelin - hacker Dec 16 '09 at 8:24
show 1 more comment
git clone -b <branch> <remote_repo>

Example:

git clone -b my-branch git@github.com:user/myproject.git

Alternative (no public key setup needed):

git clone -b my-branch https://git@github.com/username/myproject.git
share|improve this answer
83  
pierr: I'm not sure if this answers the description of the problem given above, but it does answer the actual question - how to clone a specific branch of a repository. I voted this up because it's the answer I was googling for when I came to this page. – Jaime Bellmyer May 15 '11 at 3:35
11  
This works. It points the new HEAD at the specified branch rather than at the HEAD-branch in myproject. However, it still fetches all branches. See @edmar-miyake's answer. – cdunn2001 Mar 17 '12 at 20:35
4  
how come this is not the answer to the question? – MT. May 17 '12 at 17:45
3  
Voted up for the same reason Jaime did... I was searching a way to clone a specific branch, and that the correct way to do it :) – robregonm Jul 13 '12 at 21:49
2  
See this answer for news: stackoverflow.com/a/14930421/755257 – cbeleites Feb 22 at 20:15

To clone a branch without fetching other branches:

mkdir $BRANCH
cd $BRANCH
git init
git remote add -t $BRANCH -f origin $REMOTE_REPO
git checkout $BRANCH
share|improve this answer
10  
This is the right answer. – cdunn2001 Feb 23 '12 at 21:38
1  
Yep, it works great, thanks a lot! – maplpro May 5 '12 at 17:31
Works like a charm. Thank you. – David Jan 18 at 18:42

Here is a really simple way to do it :)

Clone the repository

git clone <repository_url>

List all branches

git branch -a 

Checkout the branch that you want

git checkout <name_of_branch>
share|improve this answer
git checkout -b <branch-name> <origin/branch_name>

for example in my case:

 git branch -a
* master
  origin/HEAD
  origin/enum-account-number
  origin/master
  origin/rel_table_play
  origin/sugarfield_customer_number_show_c

So to create a new branch based on my enum-account-number branch I do:

git checkout -b enum-account-number origin/enum-account-number

After you hit return the following happens:

Branch enum-account-number set up to track remote branch refs/remotes/origin/enum-account-number.
Switched to a new branch "enum-account-number

"

share|improve this answer
1  
Note that it may be useful to git pull origin first so that git branch -a can list all new (current) remote branches. – André Caron Oct 12 '12 at 4:13
Good point. Probably git fetch is better so that the auto merge doesn't happen, though. – dkinzer Oct 12 '12 at 14:09

Create a branch on the local system with that name. e.g. say you want to get the branch named "branch-05142011"

git branch branch-05142011 origin/branch-05142011

It'll give you a message like - "Branch branch-05142011 set up to track remote branch branch-05142011 from origin."

Now just checkout the branch like below and you have the code -
git checkout branch-05142011

share|improve this answer
3  
This will do too : git fetch origin [remote-branch]:[new-local-branch] – PlanetUnknown May 15 '11 at 21:09
has it right. Miyake (below) shows how to do it when the remote is added. – cdunn2001 Feb 23 '12 at 21:37
That should say, "PlanetUnknown has it right." – cdunn2001 Feb 26 '12 at 21:38
1  
@PlanetUnknown Thanks for git fetch origin [remote-branch]:[new-local-branch], I love that! – Jeaffrey Gilbert Mar 9 '12 at 5:49
@JeaffreyGilbert You are welcome 8-) – PlanetUnknown Mar 9 '12 at 16:01
git --branch <branchname> <url>

But bash completion don't get this key: --branch

Enjoy.

share|improve this answer

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