Permission denied when trying to clone git repo
Arturexe opened this issue · 4 comments
Arturexe commented
❯ git clone git@github.com:fumeapp/laranuxt.git
Cloning into 'laranuxt'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
tcampbPPU commented
Looks like your are cloning with ssh
, when you go to your GitHub settings do you have a SSH registered?
tcampbPPU commented
Looks like your are cloning with
ssh
, when you go to your GitHub settings do you have a SSH registered?
You can also try just cloning with regular HTTPS
git clone https://github.com/fumeapp/laranuxt.git
Arturexe commented
I had a ssh
key in my settings but even after I deleted it, the problem persisted. Using HTTPS
works though. Thank you.