vote up 3 vote down star

Let's say I have a Mercurial repository and I'm pulling from a default parent URL (the source I cloned it from).

Now I want to change the default parent URL (hostname change, or it was copied to another machine, etc.). Is there a way to do this, or do I have to re-clone from the new URL?

flag

2 Answers

vote up 5 vote down check

I just found the answer to my own question. Edit the .hg/hgrc file in the repository, change the default setting under the [paths] section. Simple!

link|flag
vote up 6 vote down

You can even add multiple entries in the [paths] section of your .hg/hgrc file.

[paths]
default = /repo_store/hg/project1
sandbox = /repo_store/hg/project1_experimental

And then can specify its alias in the mercurial commands. default repo need not be specified but others have to be like,

hg in            # check incoming changes from default repo
hg in default    # check incoming changes from default repo
hg in sandbox    # check incoming changes from sandbox repo
hg pull sandbox  # pull changes from sandbox repo
link|flag

Your Answer

Get an OpenID
or

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