Git troubleshooting
On this page, we collect the typical issues related to the Nuvolos Git integration.
I cannot clone a private repository from a running Nuvolos application
This can happen for various reasons:
The application runs in shared mode
You have not restarted your application since you generated the SSH key
You're using the wrong URL for the clone command (you should use the SSH-based URL starting with
git@...
for private repositories instead of the HTTP-based starting withhttps://...
)
I created a new space based on a git repo, but the repository wasn't cloned
When creating a new space based on a repo, you need to pay attention to the following:
If you want to clone a public repository without setting up your SSH key, you must use the
https://...
clone URL. Thegit@...
will only work with a correct SSH key setup, as the protocol itself always requires the SSH key to work, regardless if the repository is private or public.If you want to clone a private repository, you must set up your SSH key, and use the clone URL beginning with
git@...
.
Last updated
Was this helpful?