Last active
August 14, 2020 14:08
-
-
Save daoleno/7431b0853f961ef77d18b96302bffe54 to your computer and use it in GitHub Desktop.
homebrew 国内源
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
清华源 | |
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git | |
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git | |
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git | |
brew update | |
github 源 | |
git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git | |
git -C "$(brew --repo homebrew/core)" remote set-url origin https://github.com/Homebrew/homebrew-core.git | |
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://github.com/Homebrew/homebrew-cask.git | |
brew update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment