Ask HN: How to handle 500+ repositories in GitHub?
11–20 of 34 posts
Re: Ask HN: How to handle 500+ repositories in GitHub?
#12Re: Ask HN: How to handle 500+ repositories in GitHub?
#13Maybe there is a place for an "index" repo that holds a set of github pages that acts as an index into all the repos and groups them via that page instead of just using search.
Re: Ask HN: How to handle 500+ repositories in GitHub?
#14Re: Ask HN: How to handle 500+ repositories in GitHub?
#15On the monorepo, I learned a couple interesting things. For example with npm packages, even if you host multiple packages in a single monorepo you can still track dependents for each individual lib [1]. Well done Github.
Re: Ask HN: How to handle 500+ repositories in GitHub?
#16e.g. if there are requirements related to tracking issues in some uniform way in software projects that have a many:many relationship with source repos, a possible solution is to use some other system for issue tracking, don't try to track issues in github.
If there's a requirement to uniformly configure access controls / branch protection etc to hundreds of git repos, you could use terraform or roll your own automation using the github API combined with whatever you can enforce at the github org level.
Re: Ask HN: How to handle 500+ repositories in GitHub?
#17I started a new project with monorepo, but soon the number grew when I had to share smaller private sub-projects with smaller teams. I wish there was a way to only share a directory or so. On the monorepo, I learned a couple interesting things. For example with npm packages, even if you host multiple packages in a single monorepo you can still track dependents for each individual lib [1]. Well done Github. [1] https:…
Re: Ask HN: How to handle 500+ repositories in GitHub?
#18https://docs.github.com/en/organizations/collaborating-with-...
Re: Ask HN: How to handle 500+ repositories in GitHub?
#19I started a new project with monorepo, but soon the number grew when I had to share smaller private sub-projects with smaller teams. I wish there was a way to only share a directory or so. On the monorepo, I learned a couple interesting things. For example with npm packages, even if you host multiple packages in a single monorepo you can still track dependents for each individual lib [1]. Well done Github. [1] https:…
Re: Ask HN: How to handle 500+ repositories in GitHub?
#20I started a new project with monorepo, but soon the number grew when I had to share smaller private sub-projects with smaller teams. I wish there was a way to only share a directory or so. On the monorepo, I learned a couple interesting things. For example with npm packages, even if you host multiple packages in a single monorepo you can still track dependents for each individual lib [1]. Well done Github. [1] https:…
Google “git subrepo”