【发布时间】:2015-11-17 19:36:44
【问题描述】:
在 git 中,如果您有两个远程存储库设置为 default 和 other 并且它们都包含 cool-feature 分支但它们不同步,您可能会遇到这样的情况:
* <--- HEAD, cool-feature, default/cool-feature
|
|
o another commit
|
|
o commit for awesome
|
|
o <--- other/cool-feature
|
.
.
.
我可以通过git checkout other/cool-feature 和git checkout default/cool-feature 来回跳跃。
如何在 Mercurial 中进行等效操作?有可能吗?
【问题讨论】:
标签: mercurial multiple-repositories