I'm trying to npm install a private package from my companies git repository.
I have access to this repository and can successfully clone the repository using
git clone [email protected]:Company/path-to-repo.git
when I run npm install, it tries to use
git clone ssh://[email protected]:Company/path-to-repo.git
which is when I get this error back:
Please make sure you have the correct access rights and the repository exists.
I also get the same error if I manually type git clone ssh://[email protected]:Company/path-to-repo.git in my terminal.
Also, I have succesfully set up ssh keys for my github account and this machine, running ssh -T [email protected] returns successful.