我怎样才能从“主人”那里得到改变?谷歌代码上托管的项目的 Mercurial 存储库?

发布于 2024-09-08 18:01:07 字数 124 浏览 5 评论 0原文

我从 code.google.com 上托管的项目创建了一个“服务器”克隆。我从我的机器中的该存储库创建一个克隆并推送一些更改;一切顺利。

现在主存储库有一些更改,我想拉取它们。如何使用这些更改更新我的“服务器”克隆?

I create a "server" clone from a project hosted at code.google.com. I create a clone from that repository in my machine and push some changes; everything goes well.

Now the master repository has some changes and I want to pull them. How do I get my "server" clone updated with those changes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯寂 2024-09-15 18:01:07
hg pull -u google_code_url

-u 表示自动更新您的工作副本。您可以在 .hg/hgrc 文件中设置(如果尚不存在)默认 URL:

[paths]
default = pull_url
default-push = push_url

然后,您可以这样做:

hg push
hg pull -u

当然,您仍然可以手动指定不同的位置。

hg pull -u google_code_url

The -u means automatically update your working copy. You can set (if it's not already there) a default URL in the .hg/hgrc file:

[paths]
default = pull_url
default-push = push_url

Then, you can just do:

hg push
hg pull -u

Of course, you can still specify a different location manually.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文