0

以下是关于 Mercurial 问题的描述:

鉴于:

  • 两个回购AB,其中BA的一个分支
  • 当前目录是A的提示的工作目录。

需要:

  • 拉入B并更新到其最新的头REV

这就是我想要在 Mercurial 方面做的事情:

A> hg pull B
A> hg heads         # Notice the most recent head of B
A> hg update **REV**

我怎样才能在 GIT 中做到这一点?更具体地说:

我知道这应该是微不足道的,但我仍然无法弄清楚。

任何人?

4

2 回答 2

2
git remote add a_repo a_repo_url
git fetch a_repo
git merge a_repo/branch
于 2012-10-31T17:01:19.733 回答
2
git remote add other_repo
git fetch
git merge other_repo/branch
于 2012-10-31T16:59:09.190 回答