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?
|
|
What you want is a narrow or partial clone, but this is unfortunately not yet supported. If you already have a big repository and you realize that it would make sense to split it into several smaller repositories, then you can use the convert extension to do a Mercurial to Mercurial conversion. Note that this creates a new repository The
Then create a
(note you can use forward slashes even on Windows) and run
That will make If you want to delete all evidence of When you have several repositories like that and you want to use them as a whole, then you should look at subrepositories. This feature lets you include other repositories in a checkout — similarly to how |
|||||||||||
|
|
Instead of doing a partial clone, you can use the Convert Extension to split your repo into more than one repo by sub repository. Specifically, see the section, Converting from Mercurial:
|
||||
|
|
|
It is not possible, You can take a look a the sub-repository extension that allows you to have repositories inside a repository, which might match your needs. |
|||
|
|
|
I've stumbled accross this issue and found one way to do it: Using symlinks (Linux only unfortunately) For example, if you only need |
||||
|
|
|
This is straight forward with the convert extension. |
|||||||||||||
|
|
I used xcopy for now, no idea what the Linux equivalent is, or if I really needed all of the switches, but it does the trick: xcopy /D /S /I /Q /H /R /K /Y "django\django\contrib\admin\media" "D:\Coding\Workspace\src\django_apps\media" |
|||
|
|