0
Apples-MacBook-Pro:IpadProject apple$ hg clone https://code.google.com/p/comicflow/
warning: code.google.com certificate with fingerprint 99:9b:2c:ac:bf:65:cc:74:61:df:ed:05:6d:f6:22:a9:d6:e1:ba:9f not verified (check hostfingerprints or web.cacerts config setting)
destination directory: comicflow
requesting all changes
adding changesets
adding manifests
adding file changes
added 23 changesets with 131 changes to 75 files
updating to branch default
warning: cooliris-toolkit.googlecode.com certificate with fingerprint 3c:e9:db:04:ed:73:73:f7:dd:cb:e0:20:ce:77:28:5d:a3:d2:32:3f not verified (check hostfingerprints or web.cacerts config setting)
cloning subrepo Cooliris-ToolKit from https://cooliris-toolkit.googlecode.com/hg/
requesting all changes
adding changesets
adding manifests
adding file changes
added 145 changesets with 631 changes to 381 files
abort: No such file or directory
4

3 回答 3

1

这个错误是因为你的 Mac 上没有安装 Git。

您需要同时安装 Mercurial 和 Git 才能查看 ComicFlow 源代码。

PS:我在对这个问题的回答中添加了有关如何检查 ComicFlow 项目的说明: 如何修复由于指向子存储库中缺少修订而导致更新失败的 Mercurial 存储库?

于 2012-12-31T17:19:33.853 回答
1

检查您的全局配置文件中是否有一个实际上不存在的钩子。

您可以通过运行检查:

hg clone THEREPO -v --traceback  --debugger

这将启动 pdb,您可以从异常点进行调试。

参考

于 2012-10-11T10:14:28.860 回答
0

“没有这样的文件或目录”错误的另一个原因是文件路径超过 255 个字符。我不得不缩短一些目录名称以使其适用于我的情况。

于 2013-01-02T17:55:31.237 回答