在 git 中,如果您将两个远程存储库设置为default
andother
并且它们都包含cool-feature
分支但它们不同步,您可能会遇到这样的情况:
* <--- HEAD, cool-feature, default/cool-feature
|
|
o another commit
|
|
o commit for awesome
|
|
o <--- other/cool-feature
|
.
.
.
git checkout other/cool-feature
我可以通过and来回跳跃git checkout default/cool-feature
。
我如何在 Mercurial 中进行等效操作?甚至可能吗?