# 更换brew的下载源(解决Updating Homebrew... 长时间不动)

1 min read

替换brew.git:
cd ”$(brew —repo)“
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git

替换homebrew-core.git:
cd “(brewrepo)/Library/Taps/homebrew/homebrewcore"gitremoteseturlorigin<https://mirrors.ustc.edu.cn/homebrewcore.git>重置brew.git:cd"(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin <https://mirrors.ustc.edu.cn/homebrew-core.git> 重置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


Comments