跳过正文
  1. 随笔/

Git 配置代理

·138 字·1 分钟·
Git
Saurlax
作者
Saurlax
Web, Cloud, AI, IoT, Blockchain, Quantum, and more!

Git 不会自动从终端代理设置中读取代理信息,所以需要手动配置代理。

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

如果只需要临时使用代理,使用参数指定代理地址:

git clone repo_url -c http.proxy=proxy_url

此外,还可以尝试使用镜像仓库服务,例如对于 https://github.com/example/repo.git,可以使用以下命令:

git clone https://mirror.ghproxy.com/https://github.com/example/repo.git

相关文章

Koishi 插件开发
·1348 字·3 分钟
Koishi Node.js
MQTT 协议入门
MQTT IoT
基于 Xinetd 部署 Pwn 靶场环境
·782 字·2 分钟
CTF Pwn Docker