我在BitBucket上有一个存储库,我正在尝试使用Git GUI通过SSH连接到它,并将存储库克隆到我的本地文件夹中。我已经在BitBucket帐户中(在设置-> SSH密钥中)添加了一个公共密钥(在Git中生成)。
我从BitBucket复制克隆命令(存储库“源”页面中的“克隆此存储库”选项)并将其粘贴到Git GUI。 clone命令:
git clone git@bitbucket.org:mycode/myserver.git
然后,我按下“克隆”按钮并得到此错误:
git clone git@bitbucket.org: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
在这里我还忘记了什么不起作用?
答案 0 :(得分:0)
好吧,所以我在Git的bash中配置了我的用户帐户,然后键入clone命令,它就起作用了。
配置用户:
$ git config --global user.name myusername
$ git config --global user.email myemail@email.com
然后是回购克隆
$ git clone git@bitbucket.org:mycode/myserver.git LocalRelativeFolderName