根据http://dev.lshift.net/paul/mercurial-server/docbook.html上的“创建存储库”,我们需要做的就是创建新的存储库 - 就是clone
不存在一个。
但是在 1.1 中我不工作。如果我们看一下代码:
if cmd is None:
fail("direct logins on the hg account prohibited")
elif cmd.startswith('hg -R ') and cmd.endswith(' serve --stdio'):
repo = getrepo("read", cmd[6:-14])
if not os.path.isdir(repo + "/.hg"):
fail("no such repository %s" % repo)
dispatch.dispatch(['-R', repo, 'serve', '--stdio'])
elif cmd.startswith('hg init '):
repo = getrepo("init", cmd[8:])
if os.path.exists(repo):
fail("%s exists" % repo)
d = os.path.dirname(repo)
if d != "" and not os.path.isdir(d):
os.makedirs(d)
dispatch.dispatch(['init', repo])
else:
fail("illegal command %r" % cmd)
我们可以看到,要创建我们需要专门传递init
命令。
此命令按预期工作:
"TortoisePlink.exe" -ssh -2 hg@mercurial "hg init tst"
但我希望这样做是一些更优雅的命令。
好吧,这是文档中的“错误”还是我做错了什么?
更新:
我的问题只是关于使用mercurial-server
.
更新 2:
这是我的误解,因为我不清楚是否应该已经创建了本地存储库,它将被远程克隆。