使用 Alibaba 的 Homebrew 鏡像源進行加速


使用 Alibaba 的 Homebrew 鏡像源進行加速

平時我們執行 brew 命令安裝軟件的時候,跟以下 3 個倉庫地址有關:

  1. brew.git

  2. homebrew-core.git

  3. homebrew-bottles

通過以下操作將這 3 個倉庫地址全部替換為 Alibaba 提供的地址

 

1. 替換 / 還原 brew.git 倉庫地址

# 替換成阿里巴巴的 brew.git 倉庫地址: 

cd "$(brew --repo)" 

git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git 

#======================================================= # 
還原為官方提供的 brew.git 倉庫地址

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

2. 替換 / 還原 homebrew-core.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-core.git 倉庫地址
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://github.com/Homebrew/homebrew-core.git
 

3. 替換 / 還原 homebrew-bottles 訪問地址

BASH 終端操作方式
# 替換 homebrew-bottles 訪問 URL: 
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
#======================================================= #
還原為官方提供的 homebrew-bottles
訪問地址 vi ~/.bash_profile
# 然后,刪除 HOMEBREW_BOTTLE_DOMAIN 這一行配置
source ~/.bash_profile


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM