美文网首页
GIT clone 解决 fatal: unable to ac

GIT clone 解决 fatal: unable to ac

作者: Cheng_WANG | 来源:发表于2022-05-09 16:13 被阅读0次

方案一:

将git clone中的https改为git,如:

git clone https://github.com/dapr/cpp-sdk.git

# 改为:

git clone git://github.com/dapr/cpp-sdk.git

方案二:

命令行中执行,修改git配置

git config --global --unset http.proxy

git config --global --unset https.proxy

相关文章

网友评论

      本文标题:GIT clone 解决 fatal: unable to ac

      本文链接:https://www.haomeiwen.com/subject/stbhurtx.html