up vote 44 down vote favorite
18
share [g+] share [fb]

I have two separate mercurial repositories. At this point it makes sense that they "become one" because I want to work on the two projects simultaneously.

I'd really like the two projects to each be a subdirectory in the new repository.

  1. How do I merge the two projects?
  2. Is this a good idea, or should I keep them separate?

It seems I ought to be able to push from one repository to the other... Maybe this is really straight forward?

link|improve this question

feedback

4 Answers

up vote 37 down vote accepted

I was able to combine my two repositories in this way: 1) Use hg clone first_repository to clone one of the repositories. 2) Use hg pull -f other_repository to pull the code in from the other repository.

The -f (force) flag on the pull is the key -- it says to ingore the fact that the two repositories aren't from the same source

link|improve this answer
1  
Does this preserve the commits' hash keys from the second repo too? (I'd guess not, but it might be ok until you do a merge.) – Macke Oct 11 '09 at 19:53
@marcus-lindblom I don't know. – jm. Oct 12 '09 at 23:21
3  
This works, but you'll need to also run hg merge to finally get everything working – Factor Mystic Oct 25 '09 at 16:18
3  
@Marcus Lindblom: pulling a changeset will never, ever change its hash. If you look at hg glog after doing this you'll see you have two unrelated lines of changesets. The first changeset in each line has no parent, but that's not a problem for Mercurial. Once you pull you'll want to make one new changeset for each line where you hg mv everything into the appropriate subfolder, then you merge the lines and you're all set. – Steve Losh Oct 25 '09 at 18:45
Im about to do the same, I was wondering (since its been some time now since you did this) if you ever encountered any problems using the mega-merged clone? – mizipzor Jun 14 '10 at 22:38
show 3 more comments
feedback

hg started to have subrepo since 1.3 (2009-07-01). The early versions were incomplete and shaky but now it's pretty usable.

link|improve this answer
That is a cool feature. – jm. Sep 20 '10 at 15:00
1  
I've found subrepos to be a pain to work with. They work but you have to jump through some hoops to get them to behave and can be the source of a lot of headaches if you are not careful. – Pete Duncanson Oct 18 '11 at 14:47
feedback

If you aren't using the same code across the projects, keep them separate. You can set your personal repository of each of those projects to be just a directory apart. Why mix all the branches, merges, and commit comments when you don't have to.

About your edit: Pushing from One repository to Another. You can always use the transplant command. Although, all this is really side stepping your desire to combine the two, so you might feel uncomfortable using my suggestions. Then you can use the forest extension, or something.

hg transplant -s REPOSITORY lower_rev:high_rev
link|improve this answer
feedback

Not sure. But will the Forest Extension work for you?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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