AOSP(Android Open Source Project), CM(CyanogenMod) 등을 미러링 해보자.

1. AOSP

$ mkdir ~/android/aosp_mirror; cd ~/android/aosp_mirror
$ repo init -u https://android.googlesource.com/platform/manifest --mirror
$ repo sync -j4

2. CM
$ mkdir ~/android/cm_mirror; cd ~/android/cm_mirror
repo init -u git://github.com/CyanogenMod/android.git -b gingerbread --mirror --reference=/path/to/home/mirror/aosp_mirror
$ repo sync -j4

출처 : http://www.excentral.org/archives/2011/02/24/android-repo-mirroring
(AOSP의 repo 경우 https로 바뀌면서 주소가 바뀌었다.)

+ Recent posts