mac上git国内源下载
时间: 2024-10-23 09:07:05 浏览: 46
mac0S_brew慢的问题.zip brew使用国内镜像解决下载慢的问题
在Mac上设置Git使用国内镜像下载,可以提高Git仓库数据的访问速度。以下是步骤:
1. 首先,你需要安装Homebrew,它是Mac上一个非常方便的包管理工具,可以通过命令行输入`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`来安装。
2. 安装好Homebrew后,你可以使用它来安装其他软件,包括配置国内的Git镜像。运行以下命令:
```
brew tap cysign/git
brew install git --with-ssl --with-curl
```
这里选择`--with-ipv4`是为了启用IPv4支持,`--with-ssl`和`--with-curl`则是为了保证Git能正常连接HTTPS服务器。
3. 设置系统环境变量,让Git默认使用国内的GitHub China仓库。在终端添加以下内容到`~/.bash_profile`(或者`~/.zshrc`如果使用ZSH):
```bash
export GIT_CONFIG Core.url="https://mirrors.tuna.tsinghua.edu.cn/git/"
export GIT_SSL_NO_VERIFY=true
```
4. 刷新并生效配置:
```bash
source ~/.bash_profile
```
5. 现在你应该能够通过国内镜像下载Git资源了,测试一下是否可用:
```bash
git clone https://github.com/user/repo.git
```
阅读全文