You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a problem with the way we're using Git. We're using the unauthenticated version on port 9418, which is identified by the "git://" prefix.
fatal: clone of 'git://github.com/snap-cloud/raven-lua.git' into submodule path ...
Failed to clone 'lib/raven-lua'. Retry scheduled
Cloning into ...
This connection is not encrypted and can be easily compromised by anyone on the network. GitHub stopped supporting this connection because of security issues. Also, even when it was supported, we couldn't push using it because there was no way to verify our identity.
We need to change the remote URL to HTTPS fix this problem. For example:
There's a problem with the way we're using Git. We're using the unauthenticated version on port 9418, which is identified by the "git://" prefix.
This connection is not encrypted and can be easily compromised by anyone on the network. GitHub stopped supporting this connection because of security issues. Also, even when it was supported, we couldn't push using it because there was no way to verify our identity.
We need to change the remote URL to HTTPS fix this problem. For example:
git submodule set-url -- lib/raven-lua https://github.com/snap-cloud/raven-lua.git
The text was updated successfully, but these errors were encountered: