git clone 失败的解决方案
使用linux系统 git clone 时 会出现fatal: unable to access ‘https://github.com/******’: Failed to connect to github.com port 443: Connection refused 和 连接不上的问题,可能是网络的限制

找了好久
最后使用git clone https://ghproxy.com/+github网站地址 快的飞起!!

git push pull 失效
git config --global --unset http.proxy
git config --global --unset https.proxy
两行代码解决
在Linux系统中遇到gitclone失败,提示无法访问GitHub并被拒绝连接443端口的问题。解决方案是通过gitclonehttps://ghproxy.com/加GitHub网址的方式快速克隆,但这种方法不适用于gitpush。要取消代理设置,可以运行以下命令:gitconfig--global--unsethttp.proxy和gitconfig--global--unsethttps.proxy。这两行代码即可解决问题。
1708





