Mercurial,不同的默认上游和下游路径

Mercurial, different default upstream and downstream path

如何配置 mercurial 在拉取和推送时使用不同的默认远程存储库(即不指定该存储库的名称/路径)?

示例:

$ hg pull
pulling from https://pull.from.here

$ hg push
pushing to https://push.to.here

我还没有在 Whosebug 上找到这个(this 是相关的,但不是我要找的),所以我回答了我自己的问题:

您可以设置一个名为 default:pushurl 的路径,如 hg help config.paths

所示

因此,.hg/hgrc 包含:

[paths]
default = https://pull.from.here
default:pushurl = https://push.to.here

产量:

$ hg pull
pulling from https://pull.from.here

$ hg push
pushing to https://push.to.here