Reputation: 275
Suppose I have this folder structure:
Is it possible to preserve the above folder structure and have 3 Mercurial subrepos A, B, C where:
Again, I do not want to create a subrepo A that will have A1, A2, A3 as subfolders, I am looking for a way to preserve the file structure above.
Thank you
Upvotes: 1
Views: 86
Reputation: 26597
The only possible way is to achieve this would be to create a repository A
which contains A1
, A2
, A3
and also the repositories B
and C
as subrepositories.
A
)
B
in A
)C
in A
)Since you cannot clone just a part of a repository, you cannot do it otherwise.
Upvotes: 2