I have a user github.com/userName that has 50+ Repositories that I would like to clone into a single dir on my Windows PC. What would be the best way to do this?
I have a user github.com/userName that has 50+ Repositories that I would like to
Share
One way would be to create one more repo in which you declare your 50+ repos as submodules.
That way, you would be able to initialize/clone your 50 repos with a
(See “How to
git cloneincluding submodules?“)Don’t forget to commit and push your
main_repowhen you have committed and push any of your submodules though.