# Failed to connect to github.com port 443
VPN 的问题,设置一下 port:
git config --global http.proxy 127.0.0.1:7890 | |
git config --global https.proxy 127.0.0.1:7890 |
其中 7890 是我的 clash 的 http 端口号
# [rejected] main -> main(fetch first)
本地的 commit 版本与远程仓库的矛盾了
两者从某一点开始,产生了版本分歧
我出现这个问题纯属自己二五操作,在 github 网页上修改代码提交后,没有 pull 到本地
- 下次记得 pull!!!(pull=fetch+merge)
- 因为我想用本地的版本,直接强制覆盖了:
git push -f origin main |