克隆的默认路径,例如 CVSROOT?

发布于 2024-12-27 09:30:07 字数 78 浏览 2 评论 0 原文

有朋友问是否可以设置用户签出 Mercurial 模块的默认位置? CVS 有一个默认使用的环境变量CVSROOT

A friend asked if it is possible to set the default place where users checkout Mercurial modules from? CVS has a the environment variable CVSROOT, which is used by default.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

披肩女神 2025-01-03 09:30:07

Mercurial 中没有任何内容与 CVSROOT 变量直接匹配,因此您在 HGROOT 环境变量。 com/mercurial/hg.1.html#env" rel="nofollow">hg help env

但您可以使用 schemes 扩展 执行类似的操作。它允许您定义新的 URL 方案,作为较长 URL 的快捷方式。因此,如果您经常键入:

$ hg clone https://bitbucket.org/<something>

那么您可以加载扩展程序并改为键入

$ hg clone bb://<something>

bb:// 方案是扩展程序中的默认方案。只要您能给 Mercurial 一个 URL,这些方案就可以工作,因此您也可以使用它们进行推送/拉取。

您可以使用类似的内容添加自己的方案

[schemes]
x = /mnt/server/var/repos/

,然后使用 hg pull x://foo 从您的 /mnt/server/var/repos/foo 存储库中提取。

从您的评论来看,尚不清楚当您 hg pull 时您是否真的在追求速记。可以通过将条目添加到 [paths] 部分来创建它们,请参阅 hg 帮助路径。如果添加

[paths]
foo = somewhere

,则可以运行 hg pull foosomewhere 拉取。

There is nothing that directly matches the CVSROOT variable in Mercurial, so you won't find a HGROOT environment variable in hg help env.

But you can do something similar with the schemes extension. It lets you define new URL schemes that act as shortcuts for longer URLs. So if you often type:

$ hg clone https://bitbucket.org/<something>

then you can load the extension and instead type

$ hg clone bb://<something>

The bb:// scheme is a default scheme in the extension. These schemes work whereever you can give Mercurial a URL, so you can push/pull with them too.

You can add your own schemes with something like

[schemes]
x = /mnt/server/var/repos/

and then use hg pull x://foo to pull from your /mnt/server/var/repos/foo repository.

From a comment of yours, it's not clear if you're really after shorthands when you hg pull. They can be created by adding entries to the [paths] section, see hg help paths. If you add

[paths]
foo = somewhere

then you can run hg pull foo to pull from somewhere.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文