vote up 0 vote down star

In this Google IO 2009 presentation, a GIT url is provided in the slides. The URL looks like this

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

I want to check out the code, so I ran

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

But git is aborting with the error fatal: http://android.git.kernel.org/?p=platform/development.git/info/refs not found: did you run git update-server-info on the server. Am I doing anything wrong ?

flag

79% accept rate
1  
This is gitweb (git web interface) URL, not repository URL. You should have URL to use for "git clone" in the project summary page, as @Koraktor wrote – Jakub Narębski Sep 29 at 10:11

1 Answer

vote up 3 vote down check

The right URL should be git://android.git.kernel.org/platform/development.git as mentioned at the top of the web page your URL points to.

git clone git://android.git.kernel.org/platform/development.git
link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.