报错内容:
ssh: connect to host 192.168.xx.xx port xxxxx: Connection refused
fatal: Could not read from remote repository.Please make sure you have the correct access rights
and the repository exists.
出现场景:多少跟我瞎改git文件有点关系。
原因分析:ssh key出了问题。
解决方法:重新配置ssh key
我自己的具体做法就是找到~/.ssh/id_rsa.pub(公钥) 文件,复制里面的内容到服务器端配置ssh key的地方。
知识点补充:ssh目录下的id_rsa 文件有两个,一个有pub后缀,一个没有,有后缀的存放的是公钥,没有的存放的是私钥。如果没有找到这两个文件,可能是还没生成key,可以使用ssh keygen生成。