git中ssh推送出错解决方法 Warning: Permanently added 'gitee.com,120.55.226.24' (ECDSA) to the list of known hosts.
git使用ssh方式推送文件时出现如下错误解决方法:
Warning: Permanently added 'gitee.com,120.55.226.24' (ECDSA) to the list of known hosts.Bad packet length 1550728593.
ssh_dispatch_run_fatal: Connection to 120.55.226.24 port 22: Connection corrupted
fatal: Could not read from remote repository.
复制代码
错误原因:没有公钥
第1步:创建SSH Key。在windows下查看[c盘->用户->自己的用户名->.ssh]下是否有id_rsa、id_rsa.pub文件,如果没有需要手动生成。 打开git bash,在控制台中输入以下命令。
$ ssh-keygen -t rsa -C "github用户名"
复制代码
密钥类型可以用 -t选项指定。如果没有指定则默认生成用于SSH-2的RSA密钥。这里使用的是rsa。