tags:

views:

205

answers:

2

Hello, I have installed repo and git on my PC. I am trying to get the latest Android source by using the following commands:

  1. repo init -u git://android.git.kernel.org/platform/manifest.git The command succeeds but I am not able to see .repo directory created.

  2. repo sync This command also succeeds and the program shows the details of objects being received. However I am not able to see anything downloaded to my PC.

Any help will be appreciated.

A: 

.repo is a hidden directory. Does repo init says succeeded and initialized in dir path?

You can see the contents only after sync is complete.

Vinay
Thanks. It does say succeeded. I did not wait for sync to complete because it was taking very long and I could not see even a single file copied to my PC. Are you saying that no files will be visible till sync is 100% complete?
Yes, you should wait till repo sync is complete.
Vinay
A: 

Check your git installation folders, or the directory where you have launched the command. Usually the contents are just downloaded in the current working directory in a folder.

Pentium10