After Repo synchronization, there are no files in the directory

I installed the new Repo source code for Android, and after performing repo synchronization, there are no files in the repo directory. Did I miss something?

I used:

repo init -u git://android.git.kernel.org/platform/manifest.git

Repo initialized in / home / tarandeep / code / Android

repo sync

... He downloaded GBs of data (I can confirm through the network monitor), and then nothing appeared in the Android directory.

+3
source share
4 answers

This is a git repo in a hidden directory .git. "Hidden" means that it begins with a period.

If in doubt, you can use ls -aor ls -al(vertically) to see hidden directories.

, git, repo wrapping git GUI.

+3

. - , , . / .repo * , repo init repo sync . .

+3

-b repo init, . , .

:

repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1
+1

I am facing the same problem. As far as I know, if repo syncuploading all files successfully, git will not check projects. In my case, repo syncit failed for some reason. Thus, I received nothing but a hidden directory .repoafter starting repo sync.

Here are some known issues. https://source.android.com/source/known-issues.html

Hope this helps you.

0
source

Source: https://habr.com/ru/post/1781574/


All Articles