repo sync出现“fatal: '../platform/abi/cpp.git' does not appear to be a git repository”的解决方案

在我下载Android源代码时,在最后一步调用repo sync,出现“fatal: '../platform/abi/cpp.git' does not appear to be a git repository”,后来在网上查了资料,参考http://zxquiet.iteye.com/blog/1470991http://bbs.csdn.net/topics/380254094


1、在存放android系统源代码的目录(也就是执行repo sync命令的目录)下,有个.repo的隐藏目录,用ls -a可以查看的到,进入该目录:cd .repo;


2、打开.repo目录下的manifest.xml文件(命令vim manifest.xml)并找到fetch属性,在我的文件中显示fetch="..",将fetch修改为 fetch="git://Android.git.linaro.org/"( 或则改为 git://git.omapzoom.org ),保存并退出;


3、继续repo sync就可以下载了。

posted @ 2014-09-24 11:34  kobe8  Views(17032)  Comments(0Edit  收藏  举报