git@gitlab.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
The issue here is that you must create the project on GitLab before you can push to it as a remote origin. Without having a project created on GitLab.com, there is no “remote origin” available to push to.
make sure you have the correct access rights and the repository exists.
This error is basically Git saying “I tried to push to remote, but the remote origin does not exist”.
The solution is to create a blank project on your GitLab.com named work and then push to it. You can create a new project in the web interface, or you can use the Create Project API endpoint. Either way, if the project exists on GitLab.combefore you push to it, you can get past this error.
I am confused. You say above, one must create a project first using the portal or API, however, in your article here, you say one can run git push --set-upstream... to create a new project.
When you create a new repository locally, instead of going to GitLab to manually create a new project and then clone the repo locally, you can directly push it to GitLab to create the new project, all without leaving your terminal. If you have access rights to the associated namespace, GitLab will automatically create a new project under that GitLab namespace with its visibility set to Private by default (you can later change it in the project’s settings).
This can be done by using either SSH or HTTPS:
Does the referenced article relate to some other “version” or something?
Knowing this, I believe the original poster’s (@abhishek1110) problem was actually related the result of not having the correct SSH public key added to the user’s GitLab.com account as indicated by Permission denied (publickey)
When seeing Permission denied (publickey) in errors that arise with git commands and GitLab.com, here are two options to help troubleshoot and identify the problem:
I have been experiencing the same issue with this type of setup. The public key is denied due to some permissions issue. I have tried the methods on the this post, but still experiencing issues. Any help would be greatly appreciated.
@Cybersecurelabs2020 If the public key is denied because of permissions issues, its likely that the permissions need to be changed on your local system.
In my case I needed to switch from git remote add origin git@gitlab.com:user/the-repo.git to git remote add origin https://gitlab.com/user/the-repo and that worked for me, as the empty repository was already created in Gitlab.
The first try (which is the one the documentation shows) didn’t work for me even after changing my password in the git config --list since it was also wrong.
please try the suggested steps from @gitlab-greg. SSH keys on your client need specific private permissions and the public key also needs to match your account’s key on GitLab.com. One way to verify the SSH connection only is to go for ssh -vvvv git@gitlab.com - the closed connection on success is intended, you won’t get shell access.
tried everything but no success - ssh -T git@gitlab.com works fine but cant clone or push any repository
it has worked for years without problems but today it stopped working
copy all path so there are no errors in the address. tried couple of hours with different key, generated a lot new but same result. it looks like gitlab or microsoft broke something
what im suppose to do now ? we use it at work like almost every company and it just stopped working - cant do anything without git… result of ssh -vvvv git@gitlab.com
EDIT: its working again for some repository but a few still have the same problem
Can you share an example for a repository where this doesn’t work anymore? Any changes made to the user and SSH keys you are using in your clone request? Is there a pattern when these syncs do not work?
sure, but its a private repo → this
its empty so nothing specific there but i cant understand why this doesnt work and others do
created a few new and the last one works for most of the company repositories,
its a ssh-rsa 4096 key, also tried a rsa 2048 and a ed25519
i removed all access tokens and all old ssh keys but nothing beside that ( maybe i should notice that the new windows update was installed a couple of days ago )
Hi! I’m sorry, could you help me? I’m trying to clone repositories from GitLab with SSH, but I receive this message: PTY allocation request failed on channel 0.}
I work on Windows.
1)win + r
2)control /name Microsoft.CredentialManager (copy and past,Enter) or Open credential Manager from startbar
3)remove git credential
4)now add your git remote
5)clone with url
6)automaticly pop-up open insert credential
7)Enjoy youy project