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
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 |
|||||||
|
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.
But IIRC, by default clone fetches all branches from remote, not current working branch. |
|||||||||||||||||
|
Example:
Alternative (no public key setup needed):
|
|||||||||||||||||||||
|
|
To clone a branch without fetching other branches:
|
||||
|
Here is a really simple way to do it :) Clone the repository
List all branches
Checkout the branch that you want
|
|||
|
|
for example in my case:
So to create a new branch based on my enum-account-number branch I do:
After you hit return the following happens:
" |
|||||||
|
|
Create a branch on the local system with that name. e.g. say you want to get the branch named "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 - |
|||||||||||||||
|
But bash completion don't get this key: Enjoy. |
||||
|
|