I would like to clone a repo without having the manifest on a branch.
My build system creates static manifest files with repo manifest -o static.xml -r
I'm looking for a smart way of checking out a workspace the exact same contents from those files.
Both the usual syntax of repo init -u url
and previous answers to similair questions shows how this could be achieved if I put the static manifest files on a branch in a local git. However I would like avoid this extra step and checkout directly from my manifest.
Are there some other functionality in repo
which could be used to achieve this?