こちらの手順に従って、SourceForge に 2 つ目の Mercurial リポジトリを作成しようとしています。
対話型シェルにログインした後に行ったことの総計は次のとおりです。
[myuser@shell-23010 project]$ pwd
/home/scm_hg/p/pr/project
[myuser@shell-23010 project]$ mkdir newrepo
[myuser@shell-23010 project]$ hg init newrepo
[myuser@shell-23010 project]$ chmod -R g+w newrepo
[myuser@shell-23010 project]$ cd newrepo
[myuser@shell-23010 newrepo]$ ls -al
total 12
drwxr-xr-x 3 myuser root 2048 Jun 25 20:37 .
drwxr-xr-x 5 dummy root 2048 Jun 25 20:36 ..
drwxr-xr-x 3 myuser root 2048 Jun 25 20:37 .hg
[myuser@shell-23010 newrepo]$ cd .hg
[myuser@shell-23010 .hg]$ ls -al
total 20
drwxr-xr-x 3 myuser root 2048 Jun 25 20:37 .
drwxr-xr-x 3 myuser root 2048 Jun 25 20:37 ..
-rw-r--r-- 1 myuser root 57 Jun 25 20:37 00changelog.i
-rw-r--r-- 1 myuser root 23 Jun 25 20:37 requires
drwxr-xr-x 2 myuser root 2048 Jun 25 20:37 store
[myuser@shell-23010 .hg]$
ここまでは順調ですね。でも:
をローカル マシンに複製しようとすると、次の
newrepo
ような応答が返ってきます。PS C:\Users\myuser\temp> hg clone ssh://myuser@hg.code.sf.net/p/project/newrepo local-newrepo remote: abort: There is no Mercurial repository here (.hg not found)! abort: no suitable response from remote hg!
さらに、
newrepo
Mercurial のメニューや SF プロジェクト ページのページにも表示されません。
どのステップが欠けていますか?