0

我运行了 Openshift 通知我的 rhc 客户端更新。现在,当我尝试推送或克隆 git 存储库时,我收到以下错误:

git clone ssh://5432c6d9e0b8cd501e000096@storycreator-storycreator.rhcloud.com/~/git/storycreator.git/ storycreator
Cloning into 'storycreator'...
Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
fatal: Could not read from remote repository.

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

这是一个 Windows 8 系统。其他 git 命令可以工作,例如 add 和 commit。其他人看到这个问题,有什么建议吗?

4

1 回答 1

0

该错误通常意味着 rhc 无法再看到您的 SSH 密钥。你能打开终端然后做吗

ssh -vvv 5432c6d9e0b8cd501e000096@storycreator-storycreator.rhcloud.com

试着看看它在哪里寻找钥匙。OpenShift 将它们放在主目录中的 .ssh 中,但我认为 Windows 上的某些 SSH 版本会在 Program Files 目录中查找它们。

于 2014-10-19T02:54:39.947 回答