如何使用 Mercurial 将上游更改拉入分支?

发布于 2024-08-30 00:32:42 字数 189 浏览 4 评论 0原文

我已经分叉了一个 Mercurial 存储库,现在我想将主存储库中的更改拉入我的分叉中。如果这是 git,我会做类似的事情...

git remote add upstream <url>
git pull upstream master

我如何在 Mercurial 中做这种事情?

I've forked a Mercurial repository, and now I want to pull the changes from the main repository into my fork. If this were git, I would do something like...

git remote add upstream <url>
git pull upstream master

How do I do this sort of thing in Mercurial?

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

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

发布评论

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

评论(4

零時差 2024-09-06 00:32:42

您还可以修改存储库中的 hgrc 文件

default = ssh://[email protected]/<my_user>/<my_repo>
upstream = ssh://[email protected]/<other_user>/<other_repo>

然后您可以执行以下操作

hg pull upstream

You could also modify your hgrc file in your repo

default = ssh://[email protected]/<my_user>/<my_repo>
upstream = ssh://[email protected]/<other_user>/<other_repo>

Then you can do

hg pull upstream
┊风居住的梦幻卍 2024-09-06 00:32:42

如果您从要从中提取更改的存储库克隆了存储库,您可以简单地执行以下操作:

hg pull

如果您从另一个存储库克隆了存储库,您可以:

hg pull <location of repository to pull from>

然后您需要更新您的工作副本:

hg update

无论如何,这是基础知识。更多详细信息,请参阅Mercurial:权威指南

If you cloned the repository from the one you want to pull changes from, you can simply do:

hg pull

If you cloned the repository from another repository, you can:

hg pull <location of repository to pull from>

You'll then need to update your working copy:

hg update

That's the basics, anyway. More details are available in the Mercurial: The Definitive Guide

万人眼中万个我 2024-09-06 00:32:42

你尝试过pull命令吗?

hg pull http://master.com/master

如果这不起作用,请详细说明。

Have you tried the pull command?

hg pull http://master.com/master

If that does not work, please elaborate.

相守太难 2024-09-06 00:32:42

您还可以修改存储库中的 hgrc 文件以使用特殊路径名 default 和 default-push。

default-push = ssh://[email protected]/<my_user>/<my_repo>
default = ssh://[email protected]/<other_user>/<other_repo>

然后你可以从上游(又名默认)拉取

hg pull

并推送到叉子(又名默认推送)

hg push

You could also modify your hgrc file in your repo to use the special path names default and default-push.

default-push = ssh://[email protected]/<my_user>/<my_repo>
default = ssh://[email protected]/<other_user>/<other_repo>

Then you can pull from upstream (aka default) with

hg pull

and push to fork (aka default-push) with

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