Problem
All github repos that are linked in docs are personal repos of the people who are already part of this community. This can cause problems as:
- these people if they ever decide to delete/private these repos due to their own reasons, then the code for future reference is basically lost
- all code us not readily available in the community repos, which also makes the community itself look barren.
Solution
- Make repos for each project and ask the repo owner to also add a new remote url to the git repos
git remote add qc <qc-github-repo-url>
git push -u qc main # or whatever the branch name is
Problem
All github repos that are linked in docs are personal repos of the people who are already part of this community. This can cause problems as:
Solution