Warning: Permanently added the RSA host key for IP address '52.74.223.119'

在本地使用git pull时报Warning: Permanently added the RSA host key for IP address ‘52.74.223.119’。

一开始以为是公钥过期了,但是本地已经重新通过ssh-keygen获取了公钥,还是报错。

解决办法如下:
在git bash终端输入ssh -T [email protected]验证与github是否连接成功.Warning: Permanently added the RSA host key for IP address '52.74.223.119'_第1张图片
至此,第一个报错问题解决了。但是还有第二个问题。

fatal: refusing to merge unrelated histories因为两个仓库提交历史不一致,无法pull拉取远程信息,所以需要在GIT命令中添加一句代码:–allow-unrelated-histories允许不相关历史进行提交

解决办法如下:

  • git pull origin master --allow-unrelated-histories #加上后面这个选项允许不相关历史提交
  • git push origin master #提交到远程分支

当然最后我是重新创建了一个本地仓库,直接git clone +github ssh地址就能成功pull和push了。

你可能感兴趣的:(Git)