Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 windows server 2k8 上安装了 TortoiseHg 2.6.1 和 Mercurial 2.4.1 的一体化下载。我创建了一个存储库,在端口 8000 上为它提供服务。现在没有为这个存储库设置 mercurial 配置文件。也没有全局配置文件。当我尝试通过 eclipse(MercruialEclipse 插件)从互联网上的远程计算机克隆这个 repos 时,我得到:
abort: HTTP Error 404: Not Found
这是什么意思?
谢谢。
找到了解决方案。命令语法不正确。我使用的语法不正确是
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)