Windows Git-bash致命:无法从远程存储库读取。当推SSH

时间:2019-02-09 17:24:52

标签: windows git github ssh git-bash

我正在使用Windows Git-bash使用ssh(不是https)将其推送到我的存储库。我已按照本页中的说明进行操作

https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/

$ ssh-keygen -t rsa -b 4096 -C "barghouti_since88@hotmail.com"
$ ssh-add ~/.ssh/id_rsa

然后按照以下设置将密钥复制到〜/ .ssh / id_rsa并将其复制到我在github帐户中的ssh密钥中

https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/

但是现在当我尝试使用

$git add file
$git commit -m "adding file"
$git push

我得到以下内容

FATAL ERROR: Couldn't agree a key exchange algorithm (available: curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521)
fatal: Could not read from remote repository.

请确保您具有正确的访问权限 并且存储库存在。

1 个答案:

答案 0 :(得分:0)

您可以检查以下几种可能性:

  • 您是否使用“ https”而不是“ git”来“ git clone”存储库?如果 您想使用ssh进行git push,也需要使用ssh进行克隆。
  • 您的Windows版Git是否足够新? GitHub偶尔会删除对较早,较弱,加密和您的 软件需要匹配服务器的算法,在这种情况下 根据错误消息,它没有。
  • 您是否使用与git相同的ssh软件? Windows版Git随附ssh,但ssh也可以单独安装, 例如,它本身就是OpenSSH,或者包含在腻子中。比较 带环境变量的“ where ssh-keygen”的输出 GIT_SSH。

希望这会有所帮助