Why am I getting hg: unknown command 'convert' Whilet running hg 1.7.3?

I am trying to convert svn repo to mercurial, but I am failing.

$ 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)
+3
source share
1 answer

The convert command works as an extension, that is, it must be explicitly specified in the file .hgrcor Mercurial.ini:

[extensions]
convert =

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

+8
source

Source: https://habr.com/ru/post/1793951/


All Articles