Howdy, I've found an issue in which I'm using this command: git clone --recurse-submodules ssh://git@someurl:9999/someproject/repoX.git git clones the repo successfully if I dont pass “git clone” any flags, but gives me this error when I use “--recurse-submodules” and git attempts to clone a single submodule: git@someurl: Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. fatal: clone of 'ssh://git@someurl:9999/someproject/submodule_repo.git' into submodule path 'C:/someproject/submodule_repo' failed The obvious answer is that my permissions are bad, but I can clone the submodule repo directly without issue.. This command succeeds: git clone --recurse-submodules ssh://git@someurl:9999/someproject/submodule_repo.git what gives git?