KasperskyLab / klara

Kaspersky's GReAT KLara
https://great.kaspersky.com
Other
693 stars 136 forks source link

issues cloning git repo #9

Closed UeeSoft closed 6 years ago

UeeSoft commented 6 years ago

Had issue cloning using the instructions...

projects@GhostCatcher:/var/projects$ git clone git@github.com:kasperskylab/klara.git ~/klara-github-repo
Cloning into '/home/projects/klara-github-repo'...
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Made a slight modification to the line and it worked.

projects@GhostCatcher:/var/projects$ git clone https://github.com/kasperskylab/klara.git ~/klara-github-repo
Cloning into '/home/projects/klara-github-repo'...
remote: Counting objects: 706, done.
remote: Compressing objects: 100% (424/424), done.
remote: Total 706 (delta 277), reused 700 (delta 275), pack-reused 0
Receiving objects: 100% (706/706), 2.86 MiB | 477.00 KiB/s, done.
Resolving deltas: 100% (277/277), done.
Checking connectivity... done.

Just in case others are having the same issue.

xdanx commented 6 years ago

Hey, happy to hear your issue was fixed :+1:

For future references, you must set up a SSH key if you want to clone using git@github.com (which is SSH git cloning): https://help.github.com/articles/connecting-to-github-with-ssh/