How can I limit the size of the Android source I need to download with "repo sync"?
This might be too late. But:
- You could pass
--depth=1
torepo init
to get a shallow clone. - And you could use
repo sync -c
to checkout only the current branch.
This might be too late. But:
--depth=1
to repo init
to get a shallow clone.repo sync -c
to checkout only the current branch.