I'm just getting started with git and I have a question. My app has 10 other developers working on it, each one having their own branch like dev_XXXXX. So if I do a clone of the repository, do all of their code gets copied to my machine? In that case I dont want that. Suppose my branch is dev_swamy, how do I then clone just the stable branch and dev_swamy? Thanks.
|
feedback
|
|
By default Nevertheless if you want to have a clone with only two selected branches, you can do it like this:
Don't forget to introduce yourself to Git before starting work on repository (i.e. set 'user.name' and 'user.email' config variables; usually in per-user config file)! | |||
|
feedback
|
|
If you clone, all revisions in all branches are cloned along, but the cloned repository will check out master by default. Just taking selected branches is trickier since git does not really think you should work that way. You have to pull down the branches manually:
Above is what I knew worked. However, if you want to set up a git repo that works as normal, just has a more narrow view of its remote branches? You can do that pretty easily:
| |||||||||||
feedback
|
|
Another way to do this is to avoid a direct clone, but instead manually add a remote with a custom set of fetch refspecs. e.g.
| |||
|
feedback
|
|
I think the more important question here is what others will be pushing, not what you will be cloning or pulling. Since each developer is working on his own branch, another question is how you end up with a common code base. Are the developers merging their branches to master? And are they then pushing their changed master branch to a central repository? If that is the case, there is no way for you to pull the other developers' branches anyway. If that is not the case, I fail to see how you can form a functioning team. And as I final thought: I'd be curious to know why you wouldn't want to clone the other developers' branches to your repository? | ||||
|
feedback
|