-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an option for setup a local mirror just like "repo init --mirror"? #658
Comments
This seems like a valid way to set up a cache you could use with |
In my local server, I want to clone all the repository with the bare mode, Here is my simple steps now:
After that, I can change the upstream url in west.yaml and download the projects I thought this is almost the android |
west list -f '{url}' | while read -r loc; do git clone --bare "$loc"; done Related: |
Seems there is a real requirement,can this be implemented? Using an extra script is |
Requirement funded by whom? |
There two ways to manage valid but unfunded requests in issue trackers.
Most open-source projects work in the second way because there is rarely any inter-company project management. |
Agree, this is a valid enhancement and I would take a patch adding a new |
For android repo tool, there is an option 'repo init --mirror' to setup a local
mirror, but with west, have to git clone --bare all the projects one by one.
So, is it possible to add this option?
Br,
Yingchun
The text was updated successfully, but these errors were encountered: