当前位置:   article > 正文

猫咪与Git 解决git clone 443问题_git 克隆433

git 克隆433

系统配置

  1. Ubuntu 20.04
  2. 代理为经典的猫咪logo软件

参考链接

问题描述

打算通过Git Clone一个第三方程序库时出现了下面的错误:

git clone https://github.com/borglab/gtsam.git
Cloning into 'gtsam'...
fatal: unable to access 'https://github.com/borglab/gtsam.git/': Failed to connect to github.com port 443: Connection timed out
  • 1
  • 2
  • 3

解决方法

首先需要知道代理给我们分配的IP与端口号, 小猫咪分配的是: 127.0.0.1:7890
所以此时需要启动git配置端口号

git config --global http.proxy http://127.0.0.1:7890 
git config --global https.proxy http://127.0.0.1:7890
  • 1
  • 2

取消相关设置的命令是:

git config --global --unset http.proxy
git config --global --unset https.proxy
  • 1
  • 2

查看相关的配置是:

git config --global --get http.proxy
git config --global --get https.proxy
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/571613
推荐阅读
相关标签
  

闽ICP备14008679号