unable to access ‘https://github.com/**.git/‘: Failed to connect 403

一般是因为 无法访问 github 导致的

git config --global http.proxy 查询代理

git config --global --unset http.proxy 取消代理

git config --global http.proxy localhost:51525 设置代理

git config --global https.proxy localhost:51525

你可能感兴趣的:(git)