为什么我会收到 hg: Unknown command 'convert'虽然运行 hg 1.7.3 吗?

发布于 2024-10-18 20:22:54 字数 298 浏览 2 评论 0原文

我正在尝试将 svn 存储库转换为 Mercurial,但失败了。

$ hg convert http://memorizeasy.googlecode.com/svn hg-client
hg: unknown command 'convert'
Mercurial Distributed SCM


$ hg --version
Mercurial Distributed SCM (version 1.7.3)
(see http://mercurial.selenic.com for more information)

I'm trying to convert an svn repo to mercurial but I fail.

$ hg convert http://memorizeasy.googlecode.com/svn hg-client
hg: unknown command 'convert'
Mercurial Distributed SCM


$ hg --version
Mercurial Distributed SCM (version 1.7.3)
(see http://mercurial.selenic.com for more information)

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

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

发布评论

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

评论(1

许久 2024-10-25 20:22:54

转换命令用作扩展,即需要在 .hgrcMercurial.ini 文件中显式启用它:

[extensions]
convert =

要检查当前可用的扩展命令,请运行 <代码>hg帮助扩展。它列出了启用和禁用的扩展。

The convert command works as an extension, i.e. it needs to be enabled explicitly in your .hgrc or Mercurial.ini file:

[extensions]
convert =

To check which extension commands currently are available, run hg help extensions. It lists enabled as well as disabled extensions.

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