我在windows server 2k8上安装了TortoiseHg 2.6.1和Mercurial 2.4.1的一体化下载。我创建了一个存储库,在端口8000上提供服务。目前还没有为该存储库设置mercurial配置文件。也没有全局配置文件。当我尝试通过eclipse (MercruialEclipse插件)从internet上的远程计算机克隆此repos时,我得到:
abort: HTTP Error 404: Not Found这是什么意思?
谢谢。
发布于 2012-12-24 13:19:03
找到了解决方案。命令语法不正确。我使用的错误语法是
hg clone http://www.xyz.com:8000/<dirname for the repo clone>正确的命令是:
hg clone http://www.xyz.com:8000/ <dirname for the repo clone>还应该提到我使用的是2.3.2版(Mercurial)
https://stackoverflow.com/questions/14015082
复制相似问题