I have a couple of projects with different release cycles sitting in my svn repository. Releases are created by using the classic tags structure in svn. When there are bugs to fix in releases a branch is created from a tag, the bug is fixed and then merged from there into trunk.
Now, for multiple reasons, I want to switch from svn to mercurial with a central push site.
Question: Which is the best way in mercurial to organize multiple projects that share little code between them? Should I create multiple push sites, one for each project?
Please include in the answer a description on how to recreate my release-tag, bugfix branch, ... with your prefered version of repository design.
Edit: I would like to install as little extensions as possible.
Edit2:
Given this svn layout:
.
|-- project-a
| |-- branches
| | |-- 1.x
| | `-- feature-1
| |-- tags
| `-- trunk
`-- project-b
|-- branches
|-- tags
| |-- 1.0
| `-- 1.1
`-- trunk
(thanks @bendin! :) )
Is it better to work with multiple hg push repositories
project_a-trunk
project_a-1.x
project_a-feature-1
project_b-trunk
for the branches. Tags are folded into the appropriate branch.
Or would you rather go with two push repositories in this example
project_a
project_b
with named branches and therefore multiple heads within one repo.
The advantage I see with the multiple heads repos is that I don't have to go hunt for a tag in multiple repos. The disadvantage I see is that the hg book seems to discourage multiple head repos. What would/do you do?