环境 :
物理机:Win7_x64 ,VMware10.0.4 build-2249910
虚拟机:ubuntu10.04
参考网址:http://jingyan.baidu.com/article/3c48dd34777079e10ae3585b.html
ZC: 全程FQ...
0、sudo -i
输入密码 --> 权限大一点,方便操作
ZC:现在的 "~"就变成"/root"了,不是以前的那个路径了 ! ! !
1、安装 curl:
sudo apt-get install curl
2、安装 git
sudo apt-add-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
3、安装 repo
sudo mkdir ~/bin --> 原来"/root"里面是空的,现在有了文件夹bin
sudo chmod 777 ~/bin --> 修改 文件夹"/root/bin"的权限
PATH=~/bin/:$PATH --> 这样,"/root/bin/" 就加入到环境变量$PATH里面了(可以通过 命令"echo $PATH" 来查看当前的环境变量的值)(这只是临时的改变环境变量,非永久)
3.1、下载 repo
curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
sudo chmod a+x ~/bin/repo --> 给repo赋予可执行权限(貌似"chmod a+x ~/bin/repo"也行)
4、初始化 代码目录等
mkdir android4.4 --> 这样 "/root"里面就有两个文件夹"bin"和"android4.4"
cd android4.4
cp ~/bin/repo ./ --> 将 "/root/bin/repo" 复制到"/root/android4.4/"中
./repo init -u https://android.googlesource.com/platform/manifest -b android-4.4_r1 --> 初始化最新android 源代码
报错:
“
error.GitError: manifest var:
*** Please tell me who you are.
”
这个错误,在错误信息的下面也有操作提示 让你输入名字和邮箱。
这样做:
git init
git config --global user.email "你的邮箱"
git config --global user.name "你的名字"
git commit
我这里的成功信息为:
“repo has been initialized in /root/android4.4”
5、代码同步
./repo sync
网络断开的话,再次执行命令"./repo sync"
在源码目录 使用命令:du -sh 或 du -sm 来查看已经下载了多少
网页上下载的文件总量:
“
“临时文件” .repo14775M
“临时文件” .repo和导出的源码一共24335M(23G)
”
20160104
怎么运用Git来获取android源代码(windows)
http://www.cnblogs.com/bestzxl/archive/2012/07/20/2600777.html
android4.4源码编译
http://jingyan.baidu.com/article/a501d80ce61ad0ec630f5e0b.html
一个提供Android各历史版本在线源码的网址
http://blog.csdn.net/hudashi/article/details/8207682
http://grepcode.com/project/repository.grepcode.com/java/ext/com.google.android/android/
如何查android 原生git分支
http://blog.sina.com.cn/s/blog_629b701e0101eej9.html
Git和Repo扫盲——如何取得Android源代码
http://blog.csdn.net/zhjuan/article/details/6248956
C