How to organize multiple projects within an Organization on GitHub? #179050
Select Topic AreaQuestion BodyHello, I would like to ask about the best way to organize projects within a GitHub Organization. Is it possible to create folders inside an Organization to manage multiple projects separately? I’d appreciate it if you could share the best practices for managing multiple projects in an Organization. Thank you! |
Replies: 2 comments 4 replies
|
You can’t create folders inside a GitHub Organization. The recommended approach is to create a separate repository for each project. |
You can’t make folders inside an organization. Each project should be its own repo that’s the normal setup on GitHub.If your SVN projects have multiple source sets, you can split them into separate repos or keep them together in one repo if they’re tightly linked.
For shared code, use a common repo or submodules. Keep things simple one repo per real project usually works best.