推送失败 ssh: connect to host github.com port 22: Connection timed out Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
原因是当时以ssh协议克隆的仓库,ssh协议没有走http代理
解决方案:
替换仓库链接为http协议的链接
git remote set-url origin <仓库地址.git>
git push origin main