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发布于 2013-01-01 01:19:34
此错误是因为您的Mac上未安装Git。
您需要同时安装Mercurial和Git才能签出ComicFlow源代码。
PS:我在我对这个问题的回答中添加了关于如何签出ComicFlow项目的说明:How to fix a Mercurial repo that fails updating because points to missing revision in subrepo?
发布于 2012-10-11 18:14:29
检查您的全局配置文件中是否有一个实际不存在的钩子。
您可以通过运行以下命令进行检查:
hg clone THEREPO -v --traceback --debugger这将启动pdb,您可以从异常点进行调试。
reference
发布于 2013-01-03 01:55:31
导致“没有这样的文件或目录”错误的另一个原因是文件路径超过255个字符。我不得不缩短一些目录名称以使其在我的情况下正常工作。
https://stackoverflow.com/questions/12836887
复制相似问题