1:下載android主線分支linux
repo init -u https://android.googlesource.com/platform/manifestandroid
2:下載android其它分支git
repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1app
3;查看android分支版本號工具
git --git-dir .repo/manifests/.git/ branch -afetch
4:查看android當前版本號ui
在build/core/version_defaults.mk文件中查看PLATFORM_VERSION便可。google
5:切換android分支spa
4.1 初始化repo客戶端到某一分支(以android-4.0.3_r1爲例)orm
repo init -b android-4.0.3_r1
能夠在目錄 .repo/manifest.xml中查看repo客戶端是在哪一個分支上。
4.1 同步代碼
repo sync
6:建立本身的本地分支
6.1 構造本地分支
repo start myandroid4.0.3 --all ,分支名稱爲myandroid4.0.3
6.2檢出到本身建立的分支上
repo checkout myandroid4.0.3 或
repo checkout myandroid4.0.3 origin/android-4.0.3_r1
7:下載android linux kernel代碼
查看https://android.googlesource.com/
8:如何得到指定版本的Linux內核
在下載目錄下執行:
git checkout remotes/origin/android-2.6.29
(以android-2.6.29爲例)
9:查看repo可切換的分支
cd .repo/manifests
git branch -a | cut -d / -f 3
出錯問題解決:
1:執行repo sync時出現
fatal: '../platform/abi/cpp.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
error: Cannot fetch platform/abi/cpp
------》在.repo目錄下的manifest.xml裏找到fetch屬性,改爲fetch= "git://Android.git.linaro.org/ ",或 "http://android.googlesource.com」。
:
repo工具是git工具的封裝,下載單個project時使用git,下載全部android源碼時使用repo工具。用法都是同樣的。
看着Google的教程,下載了android的源代碼。
默認分支是android-4.0.1_r1.
$ repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1
代碼下載完成了,也編譯經過,並在虛擬機中運行了。
最大的問題是:
如何將代碼的版本從4.0.1降到2.3.6呢?
網上找一個切換分支的文檔,就是不成功。
疑問:是否是切換分支,就能夠更改android代碼的版本?
文檔以下:
查看可切換的分支
cd .repo/manifests
git branch -a | cut -d / -f 3
以 gingerbread-release 分支爲例
repo init -b gingerbread-release
repo sync (not needed if your local copy is up to date)
repo start gingerbread-release --all
查看當前的分支
repo branches
在android源代碼的根目錄下運行這句話:
repo init -b gingerbread-release
-----------------------------博主網上收集---------------------------------------------------------
查看可切換的分支cd .repo/manifestsgit branch -a | cut -d / -f 3以 gingerbread-release 分支爲例repo init -b gingerbread-release repo sync (not needed if your local copy is up to date)repo start gingerbread-release --all 查看當前的分支repo branches