随笔 - 24
文章 - 0
评论 - 4
阅读 -
12万
01 2022 档案
解决git:OpenSSL SSL_read: Connection was reset, errno 10054,不能推送github仓库错误
摘要:网络问题,与ssh验证有关 在git bash中键入 git config --global http.sslVerify "false" 取消掉ssh验证即可。
阅读全文
git解决Failed to connect to github.com port 443 after 21068 ms: Timed out,不能推送到github仓库错误
摘要:极大可能是网络不稳定,或者github地址存放在需要代理的项目里 解决方法: win+i 进入设置 选择网络-代理-关闭 “使用设置脚本” 或者根据链接,进入pac文件,将github的地址从脚本文件中删除,或移动到不需要代理的栏目里。
阅读全文
git使用github仓库
摘要:初次安装git需要配置用户名和邮箱,否则git会提示:please tell me who you are. 你需要运行命令来配置你的用户名和邮箱:$ git config --global user.name “liuhanxia”$ git config --global user.email
阅读全文