> Hello. I tried the following sequence so as to build a new hg > workspace. Not sure what I'm doing wrong: > > ----------------------------------------------------------------------------------------------------------- > > trigati:/home/jc198820/hg 16 % hg init mytest > trigati:/home/jc198820/hg 17 % hg clone ssh://elpaso.eng/export/gate-hg mytest > Password: > remote: abort: There is no Mercurial repository here (.hg not found)! > abort: no suitable response from remote hg! > --------------------------------------------------------------------------------
You should either allow "hg clone" to create the target directory, or use "hg init ; hg pull -u". --Mark