Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using a local_manifest.xml with repo

I downloaded the android sources using repo. It says repo is initialized to a directory and thats where the folders get downloaded. Now I have another local_manifest.xml file which I want to use with repo sync to fetch another directory. How do I use this new manifest file to fetch the directories to my repository?

like image 708
Sid Ramadoss Avatar asked Apr 15 '11 04:04

Sid Ramadoss


2 Answers

Do this:

cp your_local_mainifest.xml .repo/manifests
repo init -m your_local_manifest.xml
repo sync
like image 75
hopliu Avatar answered Sep 18 '22 17:09

hopliu


Repo 1.9.1 has a new feature.

You'll find a new folder under .repo/ named local_manifests.

The repo tool will follow also the projects in the manifest files you'll add into this folder.

More info here.

like image 31
lucabelluccini Avatar answered Sep 19 '22 17:09

lucabelluccini