android源码下载方式:
方式一:
repoinit -u git://android.git.kernel.org/platform/manifest.git
reposync
这是官方提供的下载方式,但最近使用这种方式出现网络连接超时,据说是被hack掉了
同时,注意到kernel源码网站却依然能够访问:http://android.git.kernel.org/kernel/
于是,使用git方式下载:git clone http://android.git.kernel.org/kernel/common.git
最后,成功了
详见博客:android.git.kernel.org[0:199.6.1.173]: errno=Connection refused
方式二:
把方式一的下载命令中的git修改为http(配置文件需一并修改),则可以顺利下载源码
具体修改步骤如下:
1.编辑/home/username/bin/repo文件
修改:REPO_URL='git://android.git.kernel.org/tools/repo.git'
改为:REPO_URL='http://android.git.kernel.org/tools/repo.git'
2.运行新的命令
repo init -uhttp://android.git.kernel.org/platform/manifest.git
3.修改文件.repo/manifests/default.xml
修改:fetch="git://android.git.kernel.org/"
改为:fetch="http://android.git.kernel.org/"
4.运行同步命令,下载源码到本地
repo sync
成功!!!

git使用推荐:
VersionControl with Repo and Git
本文提供了两种有效的Android源码下载方案。方式一采用官方推荐的repo工具,通过修改git为http来解决网络连接问题;方式二直接使用git命令进行克隆。文章详细记录了每一步操作过程,并附带了具体的命令行示例。
272

被折叠的 条评论
为什么被折叠?



