bitbucket persmission denied(publickey)

时间:2015-12-23 06:32:43

标签: git ssh bitbucket

我在bitbucket上有2个回购。

我对一个仓库有正常的访问权限(通过我在bitbucket帐户SSH设置中配置的SSH),但我无法克隆其他仓库(请参阅标题中的错误消息)。

C:\Users\Piotr\wizytowka>git status
On branch master
nothing to commit, working directory clean

C:\Users\Piotr\wizytowka>git pull
Permission denied (publickey).
fatal: Could not read from remote repository.

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

1 个答案:

答案 0 :(得分:0)

您正在使用的协议是什么?

HTTP

通常只读克隆

HTTPS

读/写 - 您将提示输入密码(除非您的配置中有密码)

SSH

在没有任何凭据提示的情况下进行读写。

在您的情况下,我假设您使用的是ssh而您没有设置任何ssh密钥。

Here & here是关于如何为bitbucket设置ssh密钥的一些指南。