Code Monkey home page Code Monkey logo

Comments (7)

marc-hb avatar marc-hb commented on July 4, 2024 1

There two ways to manage valid but unfunded requests in issue trackers.

  1. The "project manager" way: close as wontfix because not funded.
  2. The "developer" way: keep open because valid.

Most open-source projects work in the second way because there is rarely any inter-company project management.

from west.

mbolivar-nordic avatar mbolivar-nordic commented on July 4, 2024 1

Agree, this is a valid enhancement and I would take a patch adding a new west mirror command that accomplished this. This doesn't belong in west init since that command's job is to set up a new workspace with just a manifest repository in it.

from west.

mbolivar-nordic avatar mbolivar-nordic commented on July 4, 2024

This seems like a valid way to set up a cache you could use with west update --name-cache. But since west init only clones the manifest repository, what would the commands that you would like to type be, and what would the desired outcomes be?

from west.

swordligit avatar swordligit commented on July 4, 2024

In my local server, I want to clone all the repository with the bare mode,
then all my members can clone whole projects from my local server.
not from the upsteam.

Here is my simple steps now:

west init -m https://github.com/zephyrproject-rtos/zephyr

west list | awk '{print $4}' > projects.list
mkdir -p /path/of/mirror/; cd /path/of/mirror

for p in $(cat projects.list); do git clone --bare $p; done

After that, I can change the upstream url in west.yaml and download the projects
from my mirror.

I thought this is almost the android repo init --mirror; repo sync does.

from west.

marc-hb avatar marc-hb commented on July 4, 2024
west list -f '{url}' | while read -r loc; do git clone --bare "$loc"; done

Related:

from west.

swordligit avatar swordligit commented on July 4, 2024

Seems there is a real requirement,can this be implemented? Using an extra script is
not so convenient.

from west.

marc-hb avatar marc-hb commented on July 4, 2024

Requirement funded by whom?

from west.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.