vote up 4 vote down star

I have a Mercurial repository containing a handful of related projects. I want to branch just one of these projects to work on it elsewhere.

Is cloning just part of a repository possible, and is that the right way to achieve this?

flag

From what I've heard, this is one reason to not put several projects in one repo. – Craig McQueen Jul 6 at 12:30

5 Answers

vote up 3 vote down check

What you want is a narrow or partial clone, but this is not yet supported.

link|flag
Thanks - I've found a workaround for what I need to do. Interesting to see the issues involved. – James Hopkin May 28 at 16:26
vote up 0 vote down

Hey, James Hopkin

Could you please tell me what workaround you have found to dealing with such kind of repository.

I also have similar kind of repository and would like to clone the portion (project1) of the repository so that each team can work on their clone portion and push their final changes in to main repository.

You can also mail me your workaround details on praveenkumar.nagle@gmail.com.

Thanks, Praveen

link|flag
In my case, it's only a small repository I'm using to share some of my own stuff between home and work. I doubt my work-around would scale to a team of developers. For what it's worth, I've just created a new repository for the single project and copied changes backwards and forwards between the two repositories. It has enough history to make merging easy in my simple case. – James Hopkin Dec 10 at 9:18
vote up 1 vote down

One option, is to instead not do a sub clone, but to use the convert extention to split your repo into more than one repo.

ConvertExtension

link|flag
vote up 1 vote down

It is not possible, hg clone will clone the whole repository.

You can take a look a the sub-repository extension that allows you to have repositories inside a repository, which might match your needs.

link|flag
vote up 1 vote down

I believe Mercurial doesn't allow operations on only part of the repository. For example, there is only a single .hg directory, at the root of the repo.

link|flag

Your Answer

Get an OpenID
or

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