全局配置github 镜像
时间: 2023-11-24 21:53:15 浏览: 290
为了解决国内访问 GitHub 缓慢的问题,可以通过配置 GitHub 镜像站点来加速访问。具体步骤如下:
1. 打开 Git Bash 或者终端,输入以下命令,查看当前的 Git 配置信息:
```shell
git config --global -l
```
2. 如果没有设置过 Git 配置信息,或者想要修改已有的配置信息,可以使用以下命令进行配置:
```shell
git config --global <key> <value>
```
其中,`<key>` 表示配置项,`<value>` 表示配置值。要配置 GitHub 镜像站点,需要设置以下三个配置项:
```shell
git config --global url."https://github.com.cnpmjs.org/".insteadOf "https://github.com/"
git config --global url."https://github.com.cnpmjs.org/".pushInsteadOf "https://github.com/"
git config --global http.https://github.com.proxy https://github.com.cnpmjs.org
```
这里以 `https://github.com.cnpmjs.org/` 为例,也可以使用其他的 GitHub 镜像站点。
3. 配置完成后,可以使用以下命令测试是否生效:
```shell
git clone https://github.com/<username>/<repository>.git
```
如果能够正常下载代码,则说明配置成功。
阅读全文