Currently if a user tracks a project through the Upstream UI, we don't persist the seed URL from which the project got fetched.
This leads to the following problem: when the user creates a local working copy by clicking the "Fork" or "Checkout" buttons on a project, the created working copy isn't configured to any particular seed node; any subsequent rad push or rad sync command in that working copy will prompt the user to select a seed node. If the user selects a different seed node than where Upstream fetched the project from, the original maintainer of the project won't see the changes that the user published.
One way to solve this is to persist the seed <-> project mapping in the upstream-proxy kv store and show the correct seed in the checkout command in the UI. E.g. rad checkout rad:git:hnrk8ueib11sen1g9n1xbt71qdns9n4gipw1o --seed <SEED_URL>.
Currently if a user tracks a project through the Upstream UI, we don't persist the seed URL from which the project got fetched.
This leads to the following problem: when the user creates a local working copy by clicking the "Fork" or "Checkout" buttons on a project, the created working copy isn't configured to any particular seed node; any subsequent
rad push
orrad sync
command in that working copy will prompt the user to select a seed node. If the user selects a different seed node than where Upstream fetched the project from, the original maintainer of the project won't see the changes that the user published.One way to solve this is to persist the seed <-> project mapping in the
upstream-proxy
kv store and show the correct seed in the checkout command in the UI. E.g.rad checkout rad:git:hnrk8ueib11sen1g9n1xbt71qdns9n4gipw1o --seed <SEED_URL>
.