2009-09-29 65 views
0

this Google IO 2009演示文稿中,幻燈片中提供了GIT URL。 的URL看起來像這樣給定一個GIT URI,我該如何檢查它?

http://android.git.kernel.org/?p=platform/development.git;a=commit; 
h=a42091afb7b122c753f9050ff5dbcb792eb36a78 

我想查出來的代碼,所以我跑

git clone http://android.git.....rest...of....URI.shown..above 

但是Git是與錯誤致命中止:http://android.git.kernel.org/?p=platform/development.git/info/refs沒有找到:你運行git更新-server-info在服務器上。我做錯了什麼?

+1

這是** gitweb **(git web interface)URL,而不是** repository ** URL。 @Koraktor寫道,您應該在項目摘要頁面中爲「'git clone'」使用URL – 2009-09-29 10:11:26

回答

3

正確的網址應該是git://android.git.kernel.org/platform/development.git,正如您的網址指向的網頁頂部所述。

git clone git://android.git.kernel.org/platform/development.git 
相關問題