2

Trying to follow the 'Getting Started' for the GoodDataJS here: http://sdk.gooddata.com/gooddata-js/getting-started/

When trying to clone repo it fails with the error:

"Cloning into 'gooddata-js'... Permission denied (publickey). fatal: Could not read from remote repository.

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

1 Answers1

1

That happens if you never registered a public/private ssh key to your account.
See "GitHub - Permission denied (publickey)" and "Error: Permission denied (publickey)".

In that case, as commented, only https would work.

git clone https://github.com/gooddata/gooddata-js.git

ssh and https protocols allows for user authentication.

True anonymous cloning could be supported (as in this answer) with:

git clone git://github.com/gooddata/gooddata-js.git

But that supposed your workstation allows port 9418 (used by git protocol) for outgoing connection.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250