赞
踩
ubuntu 20.04 虚拟机中 Git 访问 github
或者其他的 git 仓库,大部分情况下速度很慢,并且容易掉线
如果 主机上使用了代理软件,但是虚拟机 ubuntu 中 Git 访问 git 仓库依旧是很慢
【问题】如何设置 虚拟机 ubuntu 的 Git 代理,加快 git 的速度(clone 或者 拉取代码)
Clash for Windows
,开启代理后,有个端口号:windows 下使用 ipconfig /all
,Linux 下使用 ifconfig
获取 主机的 IP 地址
如果主机的IP 是 192.168.0.101
,则 代理地址就是 192.168.0.101:端口号
虚拟机 ubuntu 20.04 git 设置代理的命令,这里有 http 与 https 两个
git config --global https.proxy https://192.168.0.101:7890
git config --global http.proxy http://192.168.0.101:7890
github
或者其他的 git 仓库是否有速度的提升或者可以正常连接其实 设置代理就是修改了 git 的 配置文件 ~/.gitconfig
,把这个文件中的代理配置删除即可
vim ~/.gitconfig
也可以使用命令:
git config --global --unset http.proxy
git config --global --unset https.proxy
git config -l
查看 git 相关的配置Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。