I was considering using AppHarbor to host a lightweight website and was investigating their Mercurial integration.

Currently I use Kiln for my remote repositories, but currently AppHarbor only supports BitBucket integration.

Is it possible to have 2 remote repositories for a single local repository? So when I push commits from my local, they both get the push?

I don't ever want to pull from BitBucket, only push so that it can then be grabbed by AppHarbor and deployed.

link|improve this question

feedback

2 Answers

up vote 11 down vote accepted

You can set multiple remote repository aliases in the [paths] section of the repository configuration file. This file is in .hg/hgrc, and you would add paths like this

[paths]
default = http://kilnhg.com/repo
bitbucket = http://bitbucket.org/repo

Then you would run hg push bitbucket to push to bitbucket and hg push to push to kiln, which is also the default here. The alias default is the one that's used when you don't specify anything else. This way push and pull with no arguments would use your preferred remote host, kiln.

Sadly you can't do a hg push * type command to push to all remote hosts at once, you have to specify each push destination one by one.

link|improve this answer
fantastic. I'll give it a go and report back! – Alastair Pitts Jun 3 '11 at 10:04
looks like winner! The only thing is that file, for windows, was .hg/hgrc rather than .hg/config – Alastair Pitts Jun 6 '11 at 5:36
Woops, typo/thinko. I was thinking of git's config file. – richq Jun 6 '11 at 6:13
feedback

I'm not sure if you can edit the hgrc file on Bitbucket/Kiln. If you can, you may be able to make this automatic. If not, you could push to another local copy, which then pushes to both Bitbucket and Kiln using Hooks. See this answer by Ton (included below for convenience):

In your central server you create an changegroup hook.

So your central server would have the following hgrc:

[paths]
server2=http://server2
server3=http://server3
[hooks]
changegroup.server2 = hg push -f server2
changegroup.server3 = hg push -f server3

You can have multiple hooks for the same event, so that shouldn't be an issue. The advantage of the changegroup hook over the changeset hook is that it is run far less often.

link|improve this answer
an anonymous user proposed a change to your post. It is hard to tell if it is valid, could you take a look? – oers May 16 at 6:32
Oops, apologies, I didn't get any notification of it. I checked the docs (mercurial.selenic.com/wiki/Hook) and they say for multiple you should use a suffix, so the edit looked good (and has been approved) :-) – Danny Tuppeny May 16 at 6:59
you don't get any notification :) I just thought it would be easier to ask you personally :) – oers May 16 at 7:00
feedback

Your Answer

 
or
required, but never shown

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