./repo init -u git://android.git.kernel.org/platform/manifest.git -b gingerbread
Traceback (most recent call last):
File "./repo", line 603, in <module>
main(sys.argv[1:])
File "./repo", line 570, in main
_Init(args)
File "./repo", line 184, in _Init
_CheckGitVersion()
File "./repo", line 213, in _CheckGitVersion
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)
File "/usr/lib/python2.6/subprocess.py", line 633, in __init__
errread, errwrite)
File "/usr/lib/python2.6/subprocess.py", line 1139, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
1.将命令行中的git://android.git.kernel.org换成http://android.git.kernel.org,
2.修改文件repo将里面的
REPO_URL='git://android.git.kernel.org/tools/repo.git' 改成
REPO_URL='http://android.git.kernel.org/tools/repo.git'
3. 修改文件.repo/manifests/default.xml将其中的 fetch="git://android.git.kernel.org/" 改成
fetch="http://android.git.kernel.org/"
这样就可以下载同步Android的源代码了