homebrew 源

2021.3.5
昨天用了下腾讯软件源, 感觉速度还可以,执行 update 比之前动也不动要快不少。

配置方法:

// brew.git:
$ cd "$(brew --repo)"
$ git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/brew.git

// homebrew-core.git:
$ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
$ git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/homebrew-core.git

homebrew-bottles 替换
参考链接

bash用户替换方法

$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.cloud.tencent.com/homebrew-bottles' >> ~/.bash_profile
$ source ~/.bash_profile

zsh用户替换方法

$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.cloud.tencent.com/homebrew-bottles' >> ~/.zshrc
$ source ~/.zshrc

可以使用 chsh 查看当前是哪种 shell

$ chsh

你可能感兴趣的:(homebrew 源)