How to use repo tool for Android for Python?

I have N git repos installed in my virtualenv via pip install -e git+https://....

Git repositories are in this directory: $VIRTUAL_ENV/src/

I would like to have a tool to manage all git repositories at once.

How can I manage N git repos in $ VIRTUAL_ENV / src right away?

+4
source share
2 answers

Here are the basic repo commands:

mkdir myprojects
cd myprojects
repo init -u url_of_manifest.git -b manifest_branch -m manifest_xml
repo sync

If manifest_branchthere is master, -b masteryou can omit. If manifest_xml- default.xml, -m default.xmlmay be omitted.

, . . sample manifest-format.

, , , , . repo sync git .

+4

repo. google Android.

, Python virtualenv.

0

Source: https://habr.com/ru/post/1677825/


All Articles