I have a perforce repository on Windows machine say (p4). I can access this p4 repo using p4v client by providing IP:PortNumber details.
Now I want to run "hg convert" command on this p4 repository from Linux machine so that p4 will be converted in to "p4-hg" a mercurial repository.
Mercurial is already installed on linux box and "hg convert" extension is also enabled. hg convert command is running perfectly.
I tried to convert p4 to hg using below command on linux box but it s not working:
hg convert http://ipAddressandPortNumber /home/p4-hg
On local machine I am able to convert any perforce repo to mercurial repo. That means, URL path does not work with "hg convert" command?
Please suggest me something.