我现在正在下载氰基源代码两天了。
我正在使用Ubuntu 14.04(VBox Windows 8)来克隆Cyanogenmod 12.0 repo。
repo init -u https://github.com/CyanogenMod/android.git -b cm-12.0
repo sync -c -j 4
有关如何加快速度的提示吗?
在上面的评论中,OP透露了-j 4
causes repo
to use four simultaneous threads,但OP的VM只有两个核心。
运行比核心更多的线程经常会损害性能,增加虚拟核心的数量,以及切换到-j 2
,似乎有dramatically sped the process up。