1

我在两台不同的虚拟机上有一个 mercurial repo,并在其中一台机器上处理 repo,并将更改推送回在线 repo。有没有办法在我的第二个虚拟机上更新 repo 而无需重新克隆 repo?

我尝试了 hg update 但没有奏效。

编辑:我想通了。

  • 汞拉
  • 汞更新
4

1 回答 1

3

您需要使用hg pull从在线回购中提取。

假设这是您在第一个 VM 上所做的:

$ hg ci
$ hg push http://path_to_online_repo

这是您在第二个 VM 上需要的:

$ hg pull http://path_to_online_repo
$ hg update
于 2012-11-05T18:14:48.543 回答