I would like to set up a public GitHub repo with submodules. GitHub offers two ways of connecting - https:...
& git@...
protocols. For the team working on the project, git@...
is much easier to use because we all use proper ssh certificates. But for the casual user who is not a member of the team, https:...
is the only option. The git submodules require a full URL.
How can we set up repository submodules so that both the developers and casual contributors can use the system equally well? Thanks!