以下是关于 Mercurial 问题的描述:
鉴于:
- 两个回购A和B,其中B是A的一个分支
- 当前目录是A的提示的工作目录。
需要:
- 拉入B并更新到其最新的头REV。
这就是我想要在 Mercurial 方面做的事情:
A> hg pull B
A> hg heads # Notice the most recent head of B
A> hg update **REV**
我怎样才能在 GIT 中做到这一点?更具体地说:
- A是https://github.com/yui/yui3-gallery.git的master分支
- B是https://github.com/jafl/yui3-gallery.git的master分支
- 当我有A的本地克隆时,我需要更新到B的最新版本
我知道这应该是微不足道的,但我仍然无法弄清楚。
任何人?