I have a git repo at [email protected]:some-org/some-repo.git.
I have another git repo at [email protected]:other-org/other-repo.git.
I want to add other-repo as a submodule in some-repo.
How do I make the submodule url relative?
I have attempted:
url = ../other-org/other-repo.git
This results in git attempting to fetch
[email protected]:some-org/other-org/other-repo.git
which is obviously wrong.
../../other-org/other-repo.git