sympy-live icon indicating copy to clipboard operation
sympy-live copied to clipboard

git submodule update fails

Open DavidWalz opened this issue 10 years ago • 2 comments

>>> git submodule update
Cloning into 'static'...
Warning: Permanently added the RSA host key for IP address '192.30.252.128' to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
Clone of '[email protected]:sympy/sympy-web-static.git' into submodule path 'static' failed

works for me when changing in .git/config

[submodule "static"]
    url = https://github.com/sympy/sympy-web-static.git

DavidWalz avatar Jul 20 '14 12:07 DavidWalz

Yeah, sympy.org had the same problem. I'm not sure why this happens now.

lidavidm avatar Jul 20 '14 13:07 lidavidm

The following change to .git/config also seems to fix this issue.

[submodule "static"]
    url = git://github.com/sympy/sympy-web-static.git

qubits4all avatar Apr 23 '15 22:04 qubits4all