git网络问题总结
unable to access SSL_ERROR_SYSCALL / Failure when receiving data from the peer
修改git config里面http.proxy / https.proxy
其中7897为使用的代理的port
1 |
|
参考链接
https://hyperzsb.io/posts/git-ssl-error/
Recv failure: Connection reset by peer
网络不稳定的时候可以再次发送命令,一般会成功。
或者:
1 |
|
error: remote origin already exists
一般是输入错误,检查一下当前的远程分支是什么
git remote -v
重新修改成仓库地址
1 |
|
参考链接
https://www.cloudbees.com/blog/remote-origin-already-exists-error
fatal: couldn’t find remote ref master
一般是master改成main解决
检查当前使用的分支名称
1 |
|
fatal: refusing to merge unrelated histories
1 |
|
git网络问题总结
https://hexwhat.top/2024/03/19/git-network-error-sum/