简体   繁体   中英

Why do I get hg: unknown command 'convert' althought running hg 1.7.3?

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)

The convert command works as an extension, ie 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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM