curl: (6) Couldn't resolve host 'android.git.'$ curl https://android.git./repo > ~/bin/repo curl: (6) Couldn't resolve host 'android.git.' 原因是因?yàn)閍ndroid.git.網(wǎng)站被黑了,,所以無(wú)法從該網(wǎng)站下載repo和android源代碼了,。 因此我們只能想辦法從其他地方下載了. 我們可以從https://www./網(wǎng)站下載android源碼。 具體方法如下: 下載repo并設(shè)置環(huán)境變量 $ curl "http://php./en/wp-content/uploads/2011/09/repo"> ~/bin/repo$ chmod a+x ~/bin/repo $ PATH=~/bin:$PATH 下載android源碼 $ mkdir WORKING_DIRECTORY PS: repo只是一個(gè)腳本工具,。你可以從任何地方下載repo工具,,例如 http://code.google.com/p/git-repo/ 但是如何要下載android源代碼的話,需要把repo文件打開,,把文件開頭的 REPO_URL='git://android.git./tools/repo.git' 的這個(gè)地址換成其他可以下載源代碼的地址久可以了,,上面下載的repo就是把 REPO_URL='git://android.git./tools/repo.git' 替換成 REPO_URL='git:///tools/repo.git' |
|