mac 下brew的源更换为阿里云

helei 2021-11-28 744 11/28

# 替换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

# 替换homebrew-bottles:

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

# 应用生效 

brew update

# 重置brew.git:

cd "$(brew --repo)"git remote set-url origin 
https://github.com/Homebrew/brew.git

# 重置homebrew-core.git:

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

- THE END -

helei

11月28日15:00

最后修改:2021年11月28日
0

非特殊说明,本博所有文章均为博主原创。