gitee公开仓库clone出现 fatal: unable to access 的错误,这个错误不是因为没有权限,而是因为本地的git可能使用了代理,操作步骤如下:

# 查看git对http、https检出是否用了代理

git config --global http.proxy
git config --global https.proxy

# 取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐