码迷,mamicode.com
首页 > 其他好文 > 详细

HomeBrew太慢,如何替换默认HomeBrew源,使用阿里云的源

时间:2019-07-06 17:30:52      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:生效   div   dom   remote   使用   set   main   domain   homebrew   

替换homebrew使用阿里云的源

# 替换brew.git:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
# 替换homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
# 应用生效
brew update
# 替换homebrew-bottles:
echo export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles >> ~/.zshrc
source ~/.zshrc

使用回官方源:

1 # 重置brew.git:
2 cd "$(brew --repo)"
3 git remote set-url origin https://github.com/Homebrew/brew.git
4 # 重置homebrew-core.git:
5 cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
6 git remote set-url origin https://github.com/Homebrew/homebrew-core.git
7 
8 #删除zshrc HOMEBREW_BOTTLE_DOMAIN内容

 

HomeBrew太慢,如何替换默认HomeBrew源,使用阿里云的源

标签:生效   div   dom   remote   使用   set   main   domain   homebrew   

原文地址:https://www.cnblogs.com/housestudy/p/11143384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!