更改Mercurial“默认”父URL


124

假设我有一个Mercurial存储库,并且正在从默认的父URL(从中克隆它的源)中提取。

现在,我想更改默认的父URL(更改主机名,或将其复制到另一台计算机等)。有没有办法做到这一点,还是我必须从新的URL重新克隆?

Answers:


149

您甚至可以在.hg / hgrc文件的[路径]部分中添加多个条目。

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

然后可以在mercurial命令中指定其别名。默认回购协议无需指定,但其他必须类似,

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

54

我刚刚找到了自己问题的答案。编辑.hg/hgrc存储库中的文件,更改default[paths]部分下的设置。简单!


3

为Mercurial推和拉设置默认BitBucket存储库的示例。

通常我们可以使用

$ hg push https://bitbucket.org/username/com.example.app

但是,如果要在$ hg push没有存储库URL的情况下使用,则必须将该URL添加到文件$ REPO / .hg / hgrc中。我们添加以下内容:

[paths]
default = https://bitbucket.org/username/com.example.app

关于您的问题,只需将default路径设置为新URL。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.