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