hgrc 中的 Mercurial 路径

发布于 2024-10-20 13:34:25 字数 537 浏览 2 评论 0 原文

我需要知道是否可以在我的 hgrc 文件中添加如下内容:

[paths]
default = http://somehost.com/repos/
live = ssh://[email protected]//home/user/public_html

我在 http://www.selenic.com/mercurial/hgrc.5.html#paths 但我的问题是我不知道如何使用它。 我的猜测是,它应该是这样的:

hg pull @live

也许我缺少一些文档。

谢谢

I need to know if i it is possible to add in my hgrc file something like this:

[paths]
default = http://somehost.com/repos/
live = ssh://[email protected]//home/user/public_html

I read some information about this in http://www.selenic.com/mercurial/hgrc.5.html#paths
But my problem is that i don't know how to use it.
My guess is that it should be something like this:

hg pull @live

Maybe i'm missing some documentation.

Thanks

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

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

发布评论

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

评论(1

甜柠檬 2024-10-27 13:34:25

来自 hg 帮助网址

网址都可以存储在您的
带有路径别名的配置文件
在 [paths] 部分下,如下所示:

<前><代码> [路径]
别名1 = 网址1
别名2 = 网址2
...

然后您可以将别名用于任何
使用 URL 的命令(例如
hg pull alias1 将被视为
hg pull URL1)。

两个路径别名很特殊,因为
当您这样做时,它们将用作默认值
不提供命令的 URL:

  1. 默认
  2. 默认推送

From hg help urls:

URLs can all be stored in your
configuration file with path aliases
under the [paths] section like so:

  [paths]
  alias1 = URL1
  alias2 = URL2
  ...

You can then use the alias for any
command that uses a URL (for example
hg pull alias1 will be treated as
hg pull URL1).

Two path aliases are special because
they are used as defaults when you do
not provide the URL to a command:

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