跟踪 Mercurial 的分支

发布于 2024-09-11 06:32:42 字数 182 浏览 3 评论 0原文

作为一名 Git 用户,我发现为多个 Mercurial 远程存储库设置多个目录很不方便,因为我想在它们之间快速切换,尤其是在 IDE 中工作时。

我正在尝试以某种方式从 git 复制远程分支系统,在这里我可以简单地在分支之间切换并推送到我选择的分支。

如何使用 Mercurial 轻松跟踪同一目录中的多个远程分支?

As a Git user, I find it inconvenient to set up multiple directories for multiple Mercurial remote repositories, as I want to quickly switch between them, especially when working in an IDE.

I'm trying to somehow replicate the remote branches system from git, where I can simply switch between branches and push to the one I choose.

How can I easily track multiple remote branches in the same directory with Mercurial?

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

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

发布评论

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

评论(1

一片旧的回忆 2024-09-18 06:32:42

我不是 Mercurial 大师,但这是我会尝试的方法。

没有直接的方法可以使用 Mercurial 执行此操作,但可以使用组合:

  1. 书签 扩展
  2. hgrc 文件

初始设置需要您:

  1. pull 的默认路径设置为“.” (为了防止在不带参数调用 hg Push 时意外推送到错误的跟踪分支)
  2. 在您的提示处创建一个 书签 来代表 master 的提示(用 Git 来说)

然后,当您想要跟踪新的遥控器时:

  1. hgrc 中为遥控器创建一个路径条目
  2. 为遥控器创建一个 bookmark

完成后,您可以执行以下操作

hg update tracking_branch_1  
hg pull remote_1  

: ..审查分支并决定是否要合并...然后

hg update master
hg merge tracking_branch_1

I am not a Mercurial guru, but this is the method I would try.

There is no direct method of doing this with Mercurial, but it can be accomplished using a combination of:

  1. The bookmarks extension
  2. Path entries in your hgrc file

The initial setup would require you to:

  1. Set your default path for pull to '.' (to prevent accidentally pushing to the wrong tracking branch when hg push is invoked with no arguments)
  2. Create a bookmark at your tip to represent the tip of master (in Git speak)

Then when you want to track a new remote:

  1. Create a path entry in your hgrc for the remote
  2. Create a bookmark for the remote

With that done your can do things like:

hg update tracking_branch_1  
hg pull remote_1  

...review the branch and decide if you want to merge...then

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