I have forked AOSP (all repos) from the Google's repositories, and I want to:
- Keep a copy with my changes in my own Git repositories (for instance,
private
) - Periodically pull changes from Google's repositories (for instance,
aosp
)
How should I correctly do it with repo
? Repo manifest can contain multiple remotes, but how can I specify, that I want to use aosp
only for pulling, and private
for both pushing and pulling?
I've already seen this answer, but it doesn't clarify how to sync the forked repository with the original one (and it covers only the case when I'm forking a single repository, not the whole AOSP code).