1.安裝git
sudo apt-get install git-core
2.安裝curl
sudo apt-get install git-core curl
3.安裝repo, 通過curl下載repo
網上或者很多書籍上都是這樣寫的:
curl http://android.git.kernel.org/repo > ~/bin/repo
結果得到的repo不能用,什麼301重新導向的,唉!悲催啊!後來在csdn上發了個貼子,大牛給解決啦!
http://code.google.com/p/git-repo/downloads/detail?name=repo-1.12 這個連結提供下載repo!
也可以通過下面命令得到:
curl http://git-repo.googlecode.com/files/repo-1.12 > ~/bin/repo
4.修改執行許可權
chmod a+x ~/bin/repo
5.修改~/bin/repo檔案將第五行
這一步又是容易出錯啊,哥就死在這裡很久啊!很多書籍或網站上都是這樣命令:
~/bin/repo init -u git://android.git.kernel.org/platform/manifest.git
執行以後,等n久,結果出現讓你喜出望外的結果啊
error:Failed connect to code.google.com:443; Operation now in progress while accessing https://code.google.com/p/git-repo//info/refs
網上大牛解決:修改~/bin/repo檔案將第五行
REPO_URL='https://code.google.com/p/git-repo/'
改為
REPO_URL='http://code.google.com/p/git-repo/'
6.然後向PATH中添加bin路徑:
export PATH=$PATH:~/bin
7.建立一個目錄,然後進入該目錄。
mkdir source
cd source
8:執行
repo init –u git://android.git.kernel.org/platform/manifest.git的時候報連結被拒絕,所以換了個源來下載
repo init -u git://codeaurora.org/platform/manifest.git -b gingerbread
這中間會問到你的名字和Email。如果你打算上傳代碼,Email須是一個Google賬戶。
repo初始化成功後會看到類似於下面的提 示:
repo initialized in /home/(目前使用者名)/source
9:最後執行$repo sync開始同步代碼。過程比較漫長,下載速度取決於你的網速(偶的3-4小時左右),中間有可能遇到斷線,重新執行repo sync即可斷點續傳。