I have been switching between several branches of the Android source code with the commands like:
repo init -u https://android.googlesource.com/platform/manifest -b android-4.4_r1.2
repo sync
The most recent tag was android-5.0.0_r2
. I noticed my .repo directory is now 30 GB in size. Is that the expected size? If not, then I'm speculating I have history from the other branches/tags I've used stored in the .repo directory.
Is there a way to reduce the size of the .repo directory? I would like to limit to only the source/objects/images/etc. I need for the particular branch I'm working on. HDD space is more important to me than download time.
I see git gc
is used on .git repositories, but that doesn't work in this case. Is there an equivalent for .repo repositories?
Note: I did try repo prune
, but that did not reduce the size of the .repo directory.