为什么我会收到 hg: Unknown command 'convert'虽然运行 hg 1.7.3 吗?
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转换命令用作扩展,即需要在
.hgrc
或Mercurial.ini
文件中显式启用它:要检查当前可用的扩展命令,请运行 <代码>hg帮助扩展。它列出了启用和禁用的扩展。
The convert command works as an extension, i.e. it needs to be enabled explicitly in your
.hgrc
orMercurial.ini
file:To check which extension commands currently are available, run
hg help extensions
. It lists enabled as well as disabled extensions.