给 hg 中的 URL 命名?

发布于 2025-01-06 01:14:42 字数 109 浏览 0 评论 0原文

我已经使用 Git 有一段时间了,并且习惯于将遥控器添加到我的存储库中,这样我就可以从具有特定名称的 URL 进行推送和拉取。是否可以在 hg 中做同样的事情?我厌倦了每次想要推送时都输入完整的 URL。

I've used Git for quite some time now, and I'm used to adding remotes to my repository, so I can push and pull from URLs with a particular name. Is it possible to do the same in hg? I'm tired of typing the full URL every time I want to push.

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

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

发布评论

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

评论(1

过期情话 2025-01-13 01:14:42

这些 URL 都可以通过路径存储在您的配置文件中
[paths] 部分下的别名如下:

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

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

http://www.selenic.com/mercurial/hg.1.html #url-paths

如果您做了很多工作,还有 SchemesExtension与特定站点(例如 Bitbucket)上的各种存储库。

These 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).

http://www.selenic.com/mercurial/hg.1.html#url-paths

There's also SchemesExtension if you do a lot of work with various repos on a particular site (e.g. Bitbucket).

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